You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
67 lines
1.4 KiB
JSON
67 lines
1.4 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"module": "esnext",
|
|
"target": "es6",
|
|
"jsx": "preserve",
|
|
"rootDir": "./",
|
|
"outDir": "build",
|
|
"allowSyntheticDefaultImports": true,
|
|
"noImplicitAny": false,
|
|
"noImplicitThis": true,
|
|
"noImplicitReturns": false,
|
|
"strictFunctionTypes": false,
|
|
"pretty": true,
|
|
"removeComments": true,
|
|
"sourceMap": false,
|
|
"inlineSourceMap": true,
|
|
"experimentalDecorators": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"importHelpers": true,
|
|
"noEmitHelpers": true,
|
|
"skipLibCheck": true,
|
|
"preserveConstEnums": true,
|
|
"allowJs": false,
|
|
"strict": true,
|
|
"declaration": false,
|
|
"emitDecoratorMetadata": true,
|
|
"noUnusedLocals": false,
|
|
"noUnusedParameters": false,
|
|
"moduleResolution": "node",
|
|
"noEmitOnError": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"baseUrl": "./src",
|
|
"lib": [
|
|
"dom",
|
|
"es2016",
|
|
"es2017.object"
|
|
],
|
|
"esModuleInterop": true,
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"noEmit": true,
|
|
"strictNullChecks": false,
|
|
},
|
|
"filesGlob": [
|
|
"types/*.d.ts",
|
|
"src/**/*.ts",
|
|
"src/**/*.tsx"
|
|
],
|
|
"exclude": [
|
|
"config",
|
|
"build",
|
|
"dist",
|
|
"node_modules",
|
|
"__tests__"
|
|
],
|
|
"types": [
|
|
"node",
|
|
"webpack",
|
|
"react",
|
|
"react-dom"
|
|
],
|
|
"compileOnSave": false,
|
|
"include": [
|
|
"src"
|
|
]
|
|
}
|