Skip to content

Commit

Permalink
fix: tsconfig node
Browse files Browse the repository at this point in the history
  • Loading branch information
LautaroPetaccio committed Jan 21, 2025
1 parent f91ceb9 commit 6c28a81
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion tsconfig.node.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,23 @@
"composite": true,
"skipLibCheck": true,
"module": "ESNext",
"jsx": "react-jsx",
"moduleResolution": "bundler",
"allowSyntheticDefaultImports": true
"allowSyntheticDefaultImports": true,
"baseUrl": "src",
"paths": {
"components/*": ["components/*"],
"config/*": ["config/*"],
"contracts/*": ["contracts/*"],
"ecsScene/*": ["ecsScene/*"],
"experiments/*": ["experiments/*"],
"icons/*": ["icons/*"],
"images/*": ["images/*"],
"lib/*": ["lib/*"],
"modules/*": ["modules/*"],
"routing/*": ["routing/*"],
"specs/*": ["specs/*"]
}
},
"include": ["vite.config.ts", "src"]
}

0 comments on commit 6c28a81

Please sign in to comment.