Set up @ path alias

This commit is contained in:
Joscha 2025-01-27 19:19:14 +01:00
parent 54773a144c
commit 1457187f5e
4 changed files with 39 additions and 10 deletions

View file

@ -18,7 +18,11 @@
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true
"noFallthroughCasesInSwitch": true,
"paths": {
"@/*": ["./src/*"]
}
},
"include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue"],
"references": [{ "path": "./tsconfig.node.json" }]