summaryrefslogtreecommitdiff
path: root/websocket-server/tsconfig.json
diff options
context:
space:
mode:
Diffstat (limited to 'websocket-server/tsconfig.json')
-rw-r--r--websocket-server/tsconfig.json18
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"]
+}