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",
|
|
|
|
"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
|
|
|
},
|
2020-11-19 17:29:38 +00:00
|
|
|
"include": ["./src/**/*", "./test/notebooks/testExplorer/**/*"],
|
2020-05-26 03:30:55 +01:00
|
|
|
"exclude": ["./src/**/__mocks__/**/*"]
|
|
|
|
}
|