34 lines
722 B
JSON
34 lines
722 B
JSON
{
|
|
"compilerOptions": {
|
|
"allowJs": true,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"importHelpers": true,
|
|
"jsx": "react",
|
|
"lib": ["esnext", "dom"],
|
|
"module": "CommonJS",
|
|
"moduleResolution": "node",
|
|
"noEmitHelpers": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noImplicitReturns": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": false,
|
|
"outDir": "app/",
|
|
"removeComments": true,
|
|
"resolveJsonModule": true,
|
|
"rootDir": "src/",
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"target": "ESNext",
|
|
"noEmit": true
|
|
},
|
|
"include": [
|
|
"src/**/*",
|
|
"src/*",
|
|
"app/**/*.d.ts"
|
|
],
|
|
"exclude": [
|
|
"node_modules"
|
|
]
|
|
}
|