From 20009aed53d8864c9204d43a17895168a777d2cc Mon Sep 17 00:00:00 2001 From: Ilan Bigio Date: Mon, 16 Dec 2024 13:06:08 -0800 Subject: Initial commit --- websocket-server/tsconfig.json | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 websocket-server/tsconfig.json (limited to 'websocket-server/tsconfig.json') 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"] +} -- cgit v1.2.3