Initial commit
This commit is contained in:
47
tsconfig.json
Normal file
47
tsconfig.json
Normal file
@@ -0,0 +1,47 @@
|
||||
{
|
||||
"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"
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user