From 77f1a9cb3e4dfb2d8c61e3ce715867af2672df5c Mon Sep 17 00:00:00 2001 From: PalmDevs Date: Thu, 28 Mar 2024 21:37:41 +0700 Subject: [PATCH] chore: remove `bun-types` from tsconfig --- tsconfig.json | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 050bea4..9962c1d 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,11 +1,9 @@ { - "extends": ["@tsconfig/strictest", "bun-types"], + "extends": ["@tsconfig/strictest"], "compilerOptions": { "lib": ["ESNext"], "target": "ESNext", "module": "ESNext", - "moduleDetection": "force", - "moduleResolution": "Bundler", "strict": true, @@ -15,8 +13,8 @@ "noFallthroughCasesInSwitch": true, "useUnknownInCatchVariables": true, "noPropertyAccessFromIndexSignature": true, - - "composite": false, + + "noEmitOnError": true, "resolveJsonModule": true, "esModuleInterop": true, "declaration": false,