Initial Commit

This commit is contained in:
2023-09-08 19:05:37 +03:00
commit 7e60195cb7
185 changed files with 27107 additions and 0 deletions

26
frontend/tsconfig.json Normal file
View File

@@ -0,0 +1,26 @@
{
"extends": "@vue/tsconfig/tsconfig.web.json",
"include": ["env.d.ts", "src/**/*", "src/**/*.vue"],
"compilerOptions": {
"module": "es2020",
"target": "es2020",
"preserveValueImports": false,
"importsNotUsedAsValues": "preserve",
"ignoreDeprecations": "5.0",
"allowJs": true,
"baseUrl": ".",
"types": [
"node",
"jest"
],
"paths": {
"@/*": ["./src/*"]
}
},
"references": [
{
"path": "./tsconfig.config.json"
}
]
}