From 9321afb59caf4f3519fccead86a6104f185a3cdf Mon Sep 17 00:00:00 2001 From: jaywcjlove <398188662@qq.com> Date: Tue, 15 Nov 2022 23:09:52 +0800 Subject: [PATCH] fix: update tsconfig.json #168 --- tsconfig.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tsconfig.json b/tsconfig.json index ecac6773..d87ca617 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -2,8 +2,14 @@ "compilerOptions": { "module": "commonjs", "esModuleInterop": true, + "allowJs": true, + "allowSyntheticDefaultImports": true, + "forceConsistentCasingInFileNames": true, + "isolatedModules": true, "declaration": true, "target": "es2017", + "noFallthroughCasesInSwitch": true, + "noEmit": true, "noImplicitAny": true, "resolveJsonModule": true, "moduleResolution": "node",