tsconfig.json
351 bytes
| 1 | { |
|---|---|
| 2 | "extends": "../tsconfig.base.json", |
| 3 | "compilerOptions": { |
| 4 | "module": "ESNext", |
| 5 | "moduleResolution": "bundler", |
| 6 | "lib": ["ES2022"], |
| 7 | "types": ["node"], |
| 8 | "outDir": "../dist/server", |
| 9 | "rootDir": "..", |
| 10 | "noEmit": false |
| 11 | }, |
| 12 | "include": ["**/*.ts", "../shared/**/*.ts"], |
| 13 | "exclude": ["**/*.test.ts", "../shared/**/*.test.ts"] |
| 14 | } |
| 15 | |