From 41c98670c8cfc3fc7ab44dc889bea3269dff6d57 Mon Sep 17 00:00:00 2001 From: Alfi Maulana Date: Wed, 13 Dec 2023 14:00:24 +0700 Subject: [PATCH] build(typescript): remove unnecessary compiler options --- tsconfig.json | 4 ---- 1 file changed, 4 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 129488d..da7bcf7 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -2,13 +2,9 @@ "compilerOptions": { "strict": true, "module": "NodeNext", - "moduleResolution": "NodeNext", "declaration": true, "outDir": "dist", "sourceMap": true, - "esModuleInterop": true, - "forceConsistentCasingInFileNames": true, - "lib": ["ES2022"], "target": "ES2022", "skipLibCheck": true },