123456789101112131415161718192021222324252627 |
- {
- "compilerOptions": {
- "module": "commonjs",
- "target": "ESNext",
- "lib": [
- "ESNext"
- ],
- "outDir": "out",
- "rootDir": "src",
- "sourceMap": true
- },
- "include": [
- "src"
- ],
- "exclude": [
- "node_modules",
- ".vscode-test"
- ],
- "references": [
- {
- "path": "./client"
- },
- {
- "path": "./server"
- }
- ]
- }
|