From 5d8a38168fb4207e5a64bd9b5040dc571d1519ab Mon Sep 17 00:00:00 2001 From: Puru Vijay Date: Sat, 15 Apr 2023 03:44:17 +0530 Subject: [PATCH] Use moduleResolution bundler --- sites/svelte.dev/tsconfig.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sites/svelte.dev/tsconfig.json b/sites/svelte.dev/tsconfig.json index 6484f32c51..d6cd561d05 100644 --- a/sites/svelte.dev/tsconfig.json +++ b/sites/svelte.dev/tsconfig.json @@ -3,6 +3,7 @@ "compilerOptions": { "allowJs": true, "checkJs": true, - "allowSyntheticDefaultImports": true + "allowSyntheticDefaultImports": true, + "moduleResolution": "bundler" } }