2020-05-26 03:30:55 +01:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"allowJs": true,
|
|
|
|
"sourceMap": false,
|
|
|
|
"noImplicitAny": true,
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
"allowUnreachableCode": false,
|
|
|
|
"allowUnusedLabels": false,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"downlevelIteration": true,
|
|
|
|
"module": "esnext",
|
|
|
|
"target": "es5",
|
2021-01-20 06:42:45 +00:00
|
|
|
"experimentalDecorators": true,
|
|
|
|
"emitDecoratorMetadata": true,
|
2020-05-26 03:30:55 +01:00
|
|
|
"lib": ["es5", "es6", "dom", "webworker.importscripts"],
|
|
|
|
"jsx": "react",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"resolveJsonModule": true,
|
2020-07-08 16:12:49 +01:00
|
|
|
"noEmit": true,
|
|
|
|
"types": ["jest"]
|
2020-05-26 03:30:55 +01:00
|
|
|
},
|
2021-01-20 06:42:45 +00:00
|
|
|
"include": ["./src/**/*", "./test/testExplorer/TestExplorer.ts"],
|
2020-05-26 03:30:55 +01:00
|
|
|
"exclude": ["./src/**/__mocks__/**/*"]
|
|
|
|
}
|