add initial project files and setup for Vue with Tailwind CSS and authentication

This commit is contained in:
artem 2025-03-16 13:00:03 +04:00
parent 2f1ceec405
commit fd65043a0e
29 changed files with 2682 additions and 0 deletions

14
tsconfig.json Normal file
View file

@ -0,0 +1,14 @@
{
"compilerOptions": {
"module": "nodenext",
"moduleResolution": "nodenext",
"baseUrl": ".",
"paths": {
"@/*" : ["src/*"]
}
},
"include": [
"src/**/*",
"public/**/*"
]
}