diff options
| author | Ilan Bigio <ilan@openai.com> | 2024-12-16 13:06:08 -0800 |
|---|---|---|
| committer | Ilan Bigio <ilan@openai.com> | 2024-12-19 16:08:22 -0500 |
| commit | 20009aed53d8864c9204d43a17895168a777d2cc (patch) | |
| tree | 754dded819869bc34a8a2a02c66ea72dac1ccd24 /websocket-server/tsconfig.json | |
Initial commit
Diffstat (limited to 'websocket-server/tsconfig.json')
| -rw-r--r-- | websocket-server/tsconfig.json | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/websocket-server/tsconfig.json b/websocket-server/tsconfig.json new file mode 100644 index 0000000..4e3b32d --- /dev/null +++ b/websocket-server/tsconfig.json @@ -0,0 +1,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"] +} |
