| 1 | { |
| 2 | "extends": "@tsconfig/strictest/tsconfig.json", |
| 3 | "compilerOptions": { |
| 4 | "module": "Node16", |
| 5 | "moduleResolution": "Node16", |
| 6 | "rootDir": "../", |
| 7 | "noEmit": true, |
| 8 | "jsx": "react-jsxdev", |
| 9 | "lib": ["ES2022"], |
| 10 | |
| 11 | "target": "ES2022", |
| 12 | "importsNotUsedAsValues": "remove", |
| 13 | }, |
| 14 | "exclude": ["node_modules"], |
| 15 | "include": ["server/src/**/*.ts", "client/src/**/*.ts"], |
| 16 | } |