fix(webapp): add jsconfig.json to navigate in webapp.

This commit is contained in:
elweyn 2023-07-27 09:53:34 +02:00
parent 69aa616012
commit 8346d31cb8

11
webapp/jsconfig.json Normal file
View File

@ -0,0 +1,11 @@
// tsconfig.json
{
"compilerOptions": {
"baseUrl": ".",
"paths": {
"~/*": [
"./*"
]
}
}
}