Skip to content

Commit 92faf1a

Browse files
committed
feat: add relative import for ts
1 parent dd13eb0 commit 92faf1a

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

packages/create-hana-app/templates/typescript/tsconfig.json

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,13 @@
1818
"strict": true,
1919
"noUnusedLocals": true,
2020
"noUnusedParameters": true,
21-
"noFallthroughCasesInSwitch": true
21+
"noFallthroughCasesInSwitch": true,
22+
23+
/* Paths */
24+
"baseUrl": "./",
25+
"paths": {
26+
"@/*": ["src/*"]
27+
}
2228
},
2329
"include": ["src"],
2430
"references": [{ "path": "./tsconfig.node.json" }]

0 commit comments

Comments
 (0)