Skip to content

Commit

Permalink
fix: bundle setup
Browse files Browse the repository at this point in the history
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
  • Loading branch information
dummdidumm committed Sep 19, 2023
1 parent fe54b84 commit fdb8fa5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/svelte-check/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"compilerOptions": {
"lib": ["es2021"],
"module": "CommonJS",
"module": "ES2022",
"target": "es2021",
"moduleResolution": "node",
"moduleResolution": "bundler",

"strict": true,
"esModuleInterop": true,
Expand Down

0 comments on commit fdb8fa5

Please sign in to comment.