Skip to content

Commit 07c25c6

Browse files
committed
chore: use moduleResolution: bundler for now
1 parent 9da0120 commit 07c25c6

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

packages/vite/tsconfig.check.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
{
22
"compilerOptions": {
33
"target": "ES2020",
4-
"moduleResolution": "node16",
5-
"module": "Node16",
4+
// NOTE: Changed moduleResolution / module due to https://github.com/rolldown/rolldown/issues/3407
5+
"moduleResolution": "Bundler",
6+
"module": "Preserve",
67
"lib": ["ES2020", "WebWorker"], // ES2020 is very conservative check for client types, could be bumped if needed
78
"types": [], // Avoid checking unrelated node_modules types
89
"noEmit": true,

0 commit comments

Comments
 (0)