Skip to content

Commit

Permalink
chore: use moduleResolution: bundler
Browse files Browse the repository at this point in the history
Use moduleResolution: bundler since the code is built with esbuild, not consumed directly
  • Loading branch information
wojtekmaj committed Jul 11, 2024
1 parent 22c58fc commit 71131cc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
"baseUrl": ".",
"esModuleInterop": true,
"experimentalDecorators": true,
"moduleResolution": "node",
"module": "esnext",
"moduleResolution": "bundler",
"noEmit": true,
"forceConsistentCasingInFileNames": true,
"lib": ["ES2023"],
"module": "commonjs",
"resolveJsonModule": true,
"skipLibCheck": true,
"strict": true,
Expand Down

0 comments on commit 71131cc

Please sign in to comment.