|
|
@ -2,10 +2,13 @@ |
|
|
|
"compilerOptions": { |
|
|
|
"target": "ES2020", |
|
|
|
"useDefineForClassFields": true, |
|
|
|
"lib": ["ES2020", "DOM", "DOM.Iterable"], |
|
|
|
"lib": [ |
|
|
|
"ES2020", |
|
|
|
"DOM", |
|
|
|
"DOM.Iterable" |
|
|
|
], |
|
|
|
"module": "ESNext", |
|
|
|
"skipLibCheck": true, |
|
|
|
|
|
|
|
/* Bundler mode */ |
|
|
|
"moduleResolution": "bundler", |
|
|
|
"allowImportingTsExtensions": true, |
|
|
@ -13,7 +16,6 @@ |
|
|
|
"isolatedModules": true, |
|
|
|
"noEmit": true, |
|
|
|
"jsx": "react-jsx", |
|
|
|
|
|
|
|
/* Linting */ |
|
|
|
"noImplicitAny": false, |
|
|
|
"strict": true, |
|
|
@ -21,14 +23,21 @@ |
|
|
|
"noUnusedParameters": true, |
|
|
|
"noFallthroughCasesInSwitch": true, |
|
|
|
"allowSyntheticDefaultImports": true, |
|
|
|
|
|
|
|
/* Type checking */ |
|
|
|
"strictNullChecks": true, |
|
|
|
"files": [ "./src/**/*.d.ts"], |
|
|
|
// "files": [ "./src/**/*.d.ts"], |
|
|
|
"paths": { |
|
|
|
"@/*": ["./src/*"] |
|
|
|
"@/*": [ |
|
|
|
"./src/*" |
|
|
|
] |
|
|
|
} |
|
|
|
}, |
|
|
|
"include": ["./src"], |
|
|
|
"references": [{ "path": "./tsconfig.node.json" }] |
|
|
|
"include": [ |
|
|
|
"./src" |
|
|
|
], |
|
|
|
"references": [ |
|
|
|
{ |
|
|
|
"path": "./tsconfig.node.json" |
|
|
|
} |
|
|
|
] |
|
|
|
} |