You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
644 B
27 lines
644 B
{ |
|
"compilerOptions": { |
|
"target": "es2017", |
|
"module": "commonjs", |
|
"removeComments": false, |
|
"preserveConstEnums": true, |
|
"moduleResolution": "node", |
|
"experimentalDecorators": true, |
|
"noImplicitAny": false, |
|
"allowSyntheticDefaultImports": true, |
|
"outDir": "lib", |
|
"noUnusedLocals": true, |
|
"noUnusedParameters": true, |
|
"strictNullChecks": true, |
|
"sourceMap": true, |
|
"baseUrl": ".", |
|
"rootDir": ".", |
|
"jsx": "react-jsx", |
|
"allowJs": true, |
|
"resolveJsonModule": true, |
|
"typeRoots": [ |
|
"node_modules/@types" |
|
] |
|
}, |
|
"include": ["./src", "./types"], |
|
"compileOnSave": false |
|
}
|
|
|