Project start

This commit is contained in:
Liviu Burcusel 2025-10-22 13:16:31 +02:00
commit 5de2a0a8fa
Signed by: liviu
GPG key ID: 6CDB37A4AD2C610C
10 changed files with 12249 additions and 0 deletions

24
tsconfig.json Normal file
View file

@ -0,0 +1,24 @@
{
// https://nuxt.com/docs/guide/concepts/typescript
"files": [],
"references": [
{
"path": "./.nuxt/tsconfig.app.json"
},
{
"path": "./.nuxt/tsconfig.server.json"
},
{
"path": "./.nuxt/tsconfig.shared.json"
},
{
"path": "./.nuxt/tsconfig.node.json"
}
],
"compilerOptions": {
"paths": {
"~/*": ["./src/*"],
"@/*": ["./src/*"]
}
}
}