| { | |
| "compilerOptions": { | |
| "target": "ES2022", | |
| "module": "commonjs", | |
| "lib": [ | |
| "ES2022" | |
| ], | |
| "outDir": "./dist", | |
| "rootDir": ".", | |
| "strict": true, | |
| "esModuleInterop": true, | |
| "skipLibCheck": true, | |
| "forceConsistentCasingInFileNames": true, | |
| "resolveJsonModule": true, | |
| "declaration": true | |
| }, | |
| "include": [ | |
| "server/**/*.ts" | |
| ], | |
| "exclude": [ | |
| "node_modules", | |
| "client", | |
| "dist" | |
| ] | |
| } |