reactemplate/tsconfig.json

18 lines
342 B
JSON

{
"compilerOptions": {
"target": "es2016",
"lib": ["DOM", "ES6"],
"jsx": "react-jsx",
"module": "commonjs",
"rootDir": "./src",
"allowJs": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true,
"paths": {
"~/*": ["src/*"]
}
}
}