Skip to content

Commit

Permalink
refactor(root): change tsconfig module resolution to bundler
Browse files Browse the repository at this point in the history
  • Loading branch information
diego-aquino committed Jan 25, 2025
1 parent 74e3da8 commit b3c97a0
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion examples/with-jest-jsdom/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"module": "esnext",
"incremental": true,
"tsBuildInfoFile": "tsconfig.tsbuildinfo",
"moduleResolution": "node",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"skipLibCheck": true,
"pretty": true,
Expand Down
2 changes: 1 addition & 1 deletion examples/with-jest-node/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"module": "esnext",
"incremental": true,
"tsBuildInfoFile": "tsconfig.tsbuildinfo",
"moduleResolution": "node",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"skipLibCheck": true,
"pretty": true,
Expand Down
2 changes: 1 addition & 1 deletion examples/with-next-js-app/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"tsBuildInfoFile": "tsconfig.tsbuildinfo",
"allowJs": true,
"noEmit": true,
"moduleResolution": "node",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"skipLibCheck": true,
"pretty": true,
Expand Down
2 changes: 1 addition & 1 deletion examples/with-next-js-pages/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"tsBuildInfoFile": "tsconfig.tsbuildinfo",
"allowJs": true,
"noEmit": true,
"moduleResolution": "node",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"skipLibCheck": true,
"pretty": true,
Expand Down
2 changes: 1 addition & 1 deletion examples/with-openapi-typegen/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"module": "esnext",
"incremental": true,
"tsBuildInfoFile": "tsconfig.tsbuildinfo",
"moduleResolution": "node",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"skipLibCheck": true,
"pretty": true,
Expand Down
2 changes: 1 addition & 1 deletion examples/with-playwright/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"tsBuildInfoFile": "tsconfig.tsbuildinfo",
"allowJs": true,
"noEmit": true,
"moduleResolution": "node",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"skipLibCheck": true,
"pretty": true,
Expand Down
2 changes: 1 addition & 1 deletion examples/with-vitest-browser/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"module": "esnext",
"incremental": true,
"tsBuildInfoFile": "tsconfig.tsbuildinfo",
"moduleResolution": "node",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"skipLibCheck": true,
"pretty": true,
Expand Down
2 changes: 1 addition & 1 deletion examples/with-vitest-jsdom/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"module": "esnext",
"incremental": true,
"tsBuildInfoFile": "tsconfig.tsbuildinfo",
"moduleResolution": "node",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"skipLibCheck": true,
"pretty": true,
Expand Down
2 changes: 1 addition & 1 deletion examples/with-vitest-node/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"module": "esnext",
"incremental": true,
"tsBuildInfoFile": "tsconfig.tsbuildinfo",
"moduleResolution": "node",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"skipLibCheck": true,
"pretty": true,
Expand Down
2 changes: 1 addition & 1 deletion packages/tsconfig/tsconfig.base.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"inlineSources": false,
"isolatedModules": true,
"module": "esnext",
"moduleResolution": "node",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
Expand Down

0 comments on commit b3c97a0

Please sign in to comment.