Initial commit

This commit is contained in:
Sebin Nyshkim 2023-01-12 20:15:47 +01:00
commit ee229b60c7
29 changed files with 8074 additions and 0 deletions

16
tsconfig.json Normal file
View file

@ -0,0 +1,16 @@
{
"extends": "@vue/tsconfig/tsconfig.web.json",
"include": ["env.d.ts", "src/**/*", "src/**/*.vue"],
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"]
}
},
"references": [
{
"path": "./tsconfig.config.json"
}
]
}