Skip to content

Commit

Permalink
chore(tsconfig): switch to moduleResolution bundler
Browse files Browse the repository at this point in the history
Signed-off-by: Lukas Mertens <[email protected]>
  • Loading branch information
lukas-mertens committed Oct 15, 2024
1 parent df5adfc commit 184f3d6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"target": "ESNext",
"useDefineForClassFields": true,
"module": "ESNext",
"moduleResolution": "Node",
"moduleResolution": "bundler",
"strict": true,
"jsx": "preserve",
"resolveJsonModule": true,
Expand Down
5 changes: 3 additions & 2 deletions tsconfig.node.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@
"compilerOptions": {
"composite": true,
"module": "ESNext",
"moduleResolution": "Node",
"allowSyntheticDefaultImports": true
"moduleResolution": "bundler",
"skipLibCheck": true,
"allowSyntheticDefaultImports": true,
},
"include": [
"vite.config.ts",
Expand Down

0 comments on commit 184f3d6

Please sign in to comment.