feat: add jsconfig.json and configure path aliases

This commit is contained in:
QuentinHsu
2025-09-15 22:30:41 +08:00
parent 18a385f817
commit dfa27f3412
2 changed files with 15 additions and 0 deletions

9
web/jsconfig.json Normal file
View File

@@ -0,0 +1,9 @@
{
"compilerOptions": {
"baseUrl": "./",
"paths": {
"@/*": ["src/*"]
}
},
"include": ["src/**/*"]
}