Replaced old frontend with new one

This commit is contained in:
2023-06-14 11:22:11 +02:00
parent 2acc0c7252
commit 2a5636f5a8
101 changed files with 51 additions and 24166 deletions

27
Frontend/tsconfig.json Normal file
View File

@@ -0,0 +1,27 @@
{
"extends": "@vue/tsconfig/tsconfig.json",
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"],
"@components/*":["./src/components/*"],
"@views/*":["./src/views/*"],
}
},
"references": [
{
"path": "./tsconfig.node.json"
},
{
"path": "./tsconfig.app.json"
}
],
"include": [
"src/**/*.ts",
"src/**/*.tsx",
"src/**/*.vue",
"tests/**/*.ts",
"tests/**/*.tsx"
],
"exclude": ["node_modules"],
}