diff options
author | 2023-01-18 13:01:55 +0800 | |
---|---|---|
committer | 2023-01-17 21:01:55 -0800 | |
commit | d16951422bc5c371965874ad656a85d1e2442e85 (patch) | |
tree | 0c63fea0bb6674e5114fd95979ba1f37edc0605d | |
parent | e0eeb1c07e95e1f872b177c7c25afe3bc5898b7c (diff) | |
download | bun-d16951422bc5c371965874ad656a85d1e2442e85.tar.gz bun-d16951422bc5c371965874ad656a85d1e2442e85.tar.zst bun-d16951422bc5c371965874ad656a85d1e2442e85.zip |
remove redundant allowSyntheticDefaultImports (#1802)
-rw-r--r-- | tsconfig.base.json | 3 | ||||
-rw-r--r-- | tsconfig.json | 3 |
2 files changed, 2 insertions, 4 deletions
diff --git a/tsconfig.base.json b/tsconfig.base.json index b6fdf3087..28a40ba39 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 97bf40258..dfde95345 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 +} |