Skip to content

Commit

Permalink
tooling: use Bundler module resolution, add "@/" path alias
Browse files Browse the repository at this point in the history
  • Loading branch information
Lordfirespeed committed Jul 16, 2024
1 parent 965fe4b commit 481eb21
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,17 @@
"target": "ES2020",
"esModuleInterop": true,
"noImplicitAny": true,
"moduleResolution": "node",
"moduleResolution": "Bundler",
"sourceMap": false,
"baseUrl": ".",
"strictNullChecks": true,
"isolatedModules": false,
"declaration": false,
"removeComments": true,
"allowSyntheticDefaultImports": true,
"paths": {}
"paths": {
"@/*": ["./src/*"]
}
},
"include": ["**/*.ts"],
"exclude": ["node_modules", "dist"]
Expand Down

0 comments on commit 481eb21

Please sign in to comment.