Skip to content

Commit

Permalink
Fix incorrect moduleResolution in tsconfig.json for package tests
Browse files Browse the repository at this point in the history
`moduleResolution` must be set to `node` as `resolveJsonModule: true`
cannot be used otherwise.
  • Loading branch information
VeskeR committed Nov 28, 2024
1 parent cae3abe commit 028eec3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/package/browser/template/src/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"resolveJsonModule": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "bundler",
"moduleResolution": "node",
"jsx": "react-jsx"
}
}

0 comments on commit 028eec3

Please sign in to comment.