Skip to content

Commit

Permalink
fix: use bundler module resolution
Browse files Browse the repository at this point in the history
  • Loading branch information
hwbllmnn committed Jun 19, 2024
1 parent 592e3e9 commit 05f3055
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,20 +3,20 @@
"baseUrl": ".",
"declaration": true,
"esModuleInterop": true,
"outDir": "dist",
"module": "ES2022",
"target": "ES2022",
"lib": ["ES2022", "dom"],
"sourceMap": true,
"inlineSources": true,
"moduleResolution": "node",
"rootDir": "src",
"forceConsistentCasingInFileNames": true,
"inlineSources": true,
"lib": ["ES2022", "dom"],
"module": "ES2022",
"moduleResolution": "Bundler",
"noImplicitAny": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noImplicitAny": true,
"noUnusedLocals": true,
"outDir": "dist",
"rootDir": "src",
"sourceMap": true,
"strictNullChecks": true,
"noUnusedLocals": true
"target": "ES2022",
},
"exclude": [
"node_modules",
Expand Down

0 comments on commit 05f3055

Please sign in to comment.