From fdb8fa558f05ae51807cee0efe9cc1225da2a609 Mon Sep 17 00:00:00 2001 From: Simon Holthausen Date: Tue, 19 Sep 2023 16:31:59 +0200 Subject: [PATCH] fix: bundle setup no idea why TS 5.2 starts failing with that tsconfig, but we can change it to this and the output stays the same through Rollup --- packages/svelte-check/tsconfig.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/svelte-check/tsconfig.json b/packages/svelte-check/tsconfig.json index c4ed90f1a..1c997fd3d 100644 --- a/packages/svelte-check/tsconfig.json +++ b/packages/svelte-check/tsconfig.json @@ -1,9 +1,9 @@ { "compilerOptions": { "lib": ["es2021"], - "module": "CommonJS", + "module": "ES2022", "target": "es2021", - "moduleResolution": "node", + "moduleResolution": "bundler", "strict": true, "esModuleInterop": true,