summaryrefslogtreecommitdiff
path: root/websocket-server/tsconfig.json
blob: 4e3b32d94c853f2682aa444d93f50dcd08ebf313 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
  "compilerOptions": {
    "target": "ES6",
    "module": "commonjs",
    "moduleResolution": "node",
    "strict": true,
    "esModuleInterop": true,
    "skipLibCheck": true,
    "forceConsistentCasingInFileNames": true,
    "outDir": "./dist",
    "rootDir": "./src",
    "noEmitOnError": true,
    "resolveJsonModule": true, 
    "incremental": true 
  },
  "include": ["src/**/*"],
  "exclude": ["node_modules"]
}