47 lines
998 B
JSON
47 lines
998 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": "src",
|
|
"outDir": "build/dist",
|
|
"target": "es5",
|
|
"lib": [
|
|
"es6",
|
|
"dom"
|
|
],
|
|
"sourceMap": true,
|
|
"allowJs": true,
|
|
"jsx": "react",
|
|
"moduleResolution": "node",
|
|
"rootDir": "src",
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noImplicitReturns": true,
|
|
"noImplicitThis": true,
|
|
"noImplicitAny": true,
|
|
"strictNullChecks": true,
|
|
"suppressImplicitAnyIndexErrors": true,
|
|
"noUnusedLocals": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"experimentalDecorators": true,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"strict": true,
|
|
"isolatedModules": true,
|
|
"noEmit": true,
|
|
"module": "esnext",
|
|
"resolveJsonModule": true,
|
|
"keyofStringsOnly": true,
|
|
"noFallthroughCasesInSwitch": true
|
|
},
|
|
"exclude": [
|
|
"node_modules",
|
|
"build",
|
|
"scripts",
|
|
"acceptance-tests",
|
|
"webpack",
|
|
"jest",
|
|
"src/setupTests.ts"
|
|
],
|
|
"include": [
|
|
"src"
|
|
]
|
|
}
|