Project start

This commit is contained in:
Liviu Burcusel 2025-09-11 15:08:48 +02:00
commit 175e397191
Signed by: liviu
GPG key ID: 6CDB37A4AD2C610C
23 changed files with 366 additions and 0 deletions

12
tsconfig.app.json Normal file
View file

@ -0,0 +1,12 @@
{
"extends": "@vue/tsconfig/tsconfig.dom.json",
"include": ["env.d.ts", "src/**/*", "src/**/*.vue"],
"exclude": ["tests/**/*.spec.ts"],
"compilerOptions": {
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
"paths": {
"@/*": ["./src/*"]
}
}
}