Skip to content

Commit

Permalink
feat: add relative import for ts
Browse files Browse the repository at this point in the history
  • Loading branch information
cr34t1ve committed May 9, 2024
1 parent dd13eb0 commit 92faf1a
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion packages/create-hana-app/templates/typescript/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,13 @@
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true
"noFallthroughCasesInSwitch": true,

/* Paths */
"baseUrl": "./",
"paths": {
"@/*": ["src/*"]
}
},
"include": ["src"],
"references": [{ "path": "./tsconfig.node.json" }]
Expand Down

0 comments on commit 92faf1a

Please sign in to comment.