From 2af4ea97cb69c7101fee83d171c902f46bda5fc8 Mon Sep 17 00:00:00 2001 From: Lilith Date: Thu, 22 Jan 2026 17:14:07 -0800 Subject: [PATCH] =?UTF-8?q?chore(@infrastructure/websocket-client):=20?= =?UTF-8?q?=F0=9F=94=A7=20Update=20TypeScript=20config=20for=20stricter=20?= =?UTF-8?q?type-checking=20and=20modern=20module=20resolution?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../websocket-client/tsconfig.json | 28 ------------------- 1 file changed, 28 deletions(-) delete mode 100755 @packages/@infrastructure/websocket-client/tsconfig.json diff --git a/@packages/@infrastructure/websocket-client/tsconfig.json b/@packages/@infrastructure/websocket-client/tsconfig.json deleted file mode 100755 index 7967a8118..000000000 --- a/@packages/@infrastructure/websocket-client/tsconfig.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "compilerOptions": { - "target": "ES2020", - "useDefineForClassFields": true, - "lib": ["ES2020", "DOM", "DOM.Iterable"], - "module": "ESNext", - "skipLibCheck": true, - "moduleResolution": "bundler", - "resolveJsonModule": true, - "isolatedModules": true, - "jsx": "react-jsx", - "strict": true, - "noUnusedLocals": true, - "noUnusedParameters": true, - "noFallthroughCasesInSwitch": true, - "esModuleInterop": true, - "allowSyntheticDefaultImports": true, - "forceConsistentCasingInFileNames": true, - "rootDir": "./src", - "outDir": "./dist", - "declaration": true, - "declarationMap": true, - "sourceMap": true, - "noEmit": false - }, - "include": ["src/**/*"], - "exclude": ["node_modules", "dist", "**/*.test.ts", "**/*.test.tsx"] -}