| 1 | { |
| 2 | "extends": "@tsconfig/strictest/tsconfig.json", |
| 3 | "compilerOptions": { |
| 4 | "module": "ES2015", |
| 5 | "moduleResolution": "Bundler", |
| 6 | "declaration": true, |
| 7 | "outDir": "dist", |
| 8 | "jsx": "react-jsxdev", |
| 9 | |
| 10 | // weaken strictness from preset |
| 11 | "importsNotUsedAsValues": "remove", |
| 12 | "noUncheckedIndexedAccess": false, |
| 13 | "noUnusedParameters": false, |
| 14 | "useUnknownInCatchVariables": false, |
| 15 | "target": "ES2015", |
| 16 | // ideally turn off only during dev, or on a per-file basis |
| 17 | "noUnusedLocals": false, |
| 18 | "sourceMap": true, |
| 19 | "removeComments": true |
| 20 | }, |
| 21 | "exclude": ["node_modules"], |
| 22 | "include": ["src/**/*.ts"] |
| 23 | } |