chore: separate frontend from backend

This commit is contained in:
2025-11-13 23:28:01 +01:00
parent 9f1d4db0de
commit 17fbe1d507
91 changed files with 415 additions and 6985 deletions

25
tsconfig.json Normal file
View File

@@ -0,0 +1,25 @@
{
// https://nuxt.com/docs/guide/concepts/typescript
"files": [],
"exclude": [
".jj",
".git",
"**/.output/*",
"**/node_modules/*",
"**/dist/*"
],
"references": [
{
"path": "./.nuxt/tsconfig.app.json"
},
{
"path": "./.nuxt/tsconfig.server.json"
},
{
"path": "./.nuxt/tsconfig.shared.json"
},
{
"path": "./.nuxt/tsconfig.node.json"
}
]
}