Skip to content

Commit

Permalink
Fix vite problem with mixed typescript imports
Browse files Browse the repository at this point in the history
See vitejs/vite#4581
And evanw/esbuild#1525

This lead to npm run watch not working when upgrading svelte kit which in turn updated vite to 2.5
  • Loading branch information
FSMaxB committed Sep 22, 2021
1 parent db838a1 commit afcfc05
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion communityvi-frontend/tsconfig.json
Expand Up @@ -6,7 +6,7 @@
"module": "es2020",
"lib": ["es2020"],
"target": "es2019",
"importsNotUsedAsValues": "error",
"importsNotUsedAsValues": "remove",
"isolatedModules": true,
"resolveJsonModule": true,
"sourceMap": true,
Expand Down

0 comments on commit afcfc05

Please sign in to comment.