From 51102a76878168a67b0c9dad11335fcd241c6c13 Mon Sep 17 00:00:00 2001 From: redphx <96280+redphx@users.noreply.github.com> Date: Thu, 25 Apr 2024 17:53:44 +0700 Subject: [PATCH] Update tsconfig.json --- tsconfig.json | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 44e9f57..8a77686 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,9 +1,10 @@ { "include": [ - "./src/**/*.ts" + "src/**/*.ts" ], "exclude": [ - "./dist" + "node_modules", + "dist" ], "compilerOptions": { // Enable latest features @@ -28,6 +29,8 @@ // Some stricter flags (disabled by default) "noUnusedLocals": true, "noUnusedParameters": false, - "noPropertyAccessFromIndexSignature": false + "noPropertyAccessFromIndexSignature": false, + + "checkJs": false } }