From f3840040402f383a2c8a3ac8447cec0b01788964 Mon Sep 17 00:00:00 2001 From: d3v1l0n Date: Mon, 23 Dec 2024 22:18:55 +0530 Subject: [PATCH] =?UTF-8?q?=E2=9A=A1=EF=B8=8F=20perf:=20improves=20the=20p?= =?UTF-8?q?erformance=20by=20skipping=20type=20checking=20of=20the=20defau?= =?UTF-8?q?lt=20library=20files?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tsconfig.node.json | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/tsconfig.node.json b/tsconfig.node.json index 0d3d7144..8c1396a7 100644 --- a/tsconfig.node.json +++ b/tsconfig.node.json @@ -4,19 +4,15 @@ "lib": ["ES2023"], "module": "ESNext", "skipLibCheck": true, - - /* Bundler mode */ + "skipDefaultLibCheck": true, "moduleResolution": "bundler", - "allowImportingTsExtensions": true, "isolatedModules": true, - "moduleDetection": "force", "noEmit": true, - - /* Linting */ "strict": true, "noUnusedLocals": true, "noUnusedParameters": true, - "noFallthroughCasesInSwitch": true + "noFallthroughCasesInSwitch": true, + "noImplicitAny": true }, "include": ["vite.config.ts"] }