From d16951422bc5c371965874ad656a85d1e2442e85 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=8D=8E=E6=99=A8?= Date: Wed, 18 Jan 2023 13:01:55 +0800 Subject: [PATCH] remove redundant allowSyntheticDefaultImports (#1802) --- tsconfig.base.json | 3 +-- tsconfig.json | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/tsconfig.base.json b/tsconfig.base.json index b6fdf30871..28a40ba393 100644 --- a/tsconfig.base.json +++ b/tsconfig.base.json @@ -8,7 +8,6 @@ "moduleResolution": "nodenext", "strict": true, "noImplicitAny": false, - "allowSyntheticDefaultImports": true, "allowJs": true, "downlevelIteration": true, "esModuleInterop": true, @@ -21,4 +20,4 @@ "./packages" ], } -} \ No newline at end of file +} diff --git a/tsconfig.json b/tsconfig.json index 97bf402589..dfde953450 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -2,7 +2,6 @@ "extends": "./tsconfig.base.json", "compilerOptions": { "experimentalDecorators": true, - "allowSyntheticDefaultImports": true, "noEmit": true, // "skipLibCheck": true, "allowJs": true @@ -25,4 +24,4 @@ "test/snapshots", "test/snapshots-no-hmr" ] -} \ No newline at end of file +}