Skip to content

Commit

Permalink
feat(tsconfig): use module preserve
Browse files Browse the repository at this point in the history
  • Loading branch information
alexzhang1030 committed Apr 12, 2024
1 parent 0b92d86 commit e6e6ecb
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,16 @@
"target": "ESNext",
"lib": ["ESNext"],
"baseUrl": ".",
"module": "ESNext",
"moduleResolution": "node",
"module": "Preserve",
"paths": {
"@/*": ["src/*"]
},
"resolveJsonModule": true,
"types": ["vitest/globals"],
"allowJs": true,
"strict": true,
"strictNullChecks": true,
"noImplicitAny": true,
"noUnusedLocals": true,
"esModuleInterop": true,
"skipDefaultLibCheck": true,
"skipLibCheck": true
},
Expand Down

0 comments on commit e6e6ecb

Please sign in to comment.