41 lines
885 B
JSON
41 lines
885 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": true,
|
|
"outDir": "app/",
|
|
"plugins": [
|
|
{
|
|
"name": "typescript-tslint-plugin",
|
|
"alwaysShowRuleFailuresAsWarnings": false,
|
|
}
|
|
],
|
|
"removeComments": true,
|
|
"resolveJsonModule": true,
|
|
"rootDir": "src/",
|
|
"inlineSourceMap": true,
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"target": "es2017"
|
|
},
|
|
"include": [
|
|
"src/**/*",
|
|
"src/*"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"src/data/*",
|
|
"**/__tests__/**"
|
|
]
|
|
}
|