38 lines
829 B
JSON
38 lines
829 B
JSON
{
|
|
"compilerOptions": {
|
|
"allowJs": true,
|
|
"sourceMap": false,
|
|
"noImplicitAny": true,
|
|
"noImplicitThis": true,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"allowUnreachableCode": false,
|
|
"allowUnusedLabels": false,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"downlevelIteration": true,
|
|
"module": "esnext",
|
|
"target": "es2017",
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"lib": [
|
|
"es5",
|
|
"es6",
|
|
"dom"
|
|
],
|
|
"jsx": "react",
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"noEmit": true,
|
|
"types": [
|
|
"jest"
|
|
]
|
|
},
|
|
"include": [
|
|
"./src/**/*",
|
|
"./utils/**/*"
|
|
],
|
|
"exclude": [
|
|
"./src/**/__mocks__/**/*"
|
|
]
|
|
} |