48 lines
969 B
JSON
48 lines
969 B
JSON
{
|
|
"compilerOptions": {
|
|
"sourceMap": false,
|
|
"sourceRoot": null,
|
|
"rootDir": "src",
|
|
"allowJs": false,
|
|
"strict": true,
|
|
"noImplicitReturns": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"suppressImplicitAnyIndexErrors": false,
|
|
"noUnusedLocals": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"experimentalDecorators": true,
|
|
"types": [
|
|
"node",
|
|
"jest"
|
|
],
|
|
"typeRoots": [
|
|
"./node_modules/@types"
|
|
],
|
|
"target": "es5",
|
|
"module": "esnext",
|
|
"lib": [
|
|
"es2015",
|
|
"dom",
|
|
"es2017"
|
|
],
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": false,
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"noEmit": true,
|
|
"jsx": "preserve",
|
|
"noImplicitAny": false,
|
|
"isolatedModules": true
|
|
},
|
|
"include": [
|
|
"./src/assets",
|
|
"./src",
|
|
"./images.d.ts"
|
|
],
|
|
"exclude": [
|
|
"./node_modules",
|
|
"./src/*.test.*",
|
|
"./src/charting_library"
|
|
]
|
|
}
|