fix(cli): fix nuxt template issues with bun

This commit is contained in:
Aman Varshney
2025-07-31 17:26:09 +05:30
parent 4096f80eed
commit 53985feabb
6 changed files with 33 additions and 9 deletions

View File

@@ -1,9 +1,23 @@
{
// https://nuxt.com/docs/guide/concepts/typescript
"extends": "./.nuxt/tsconfig.json",
"references": [
{
"path": "./.nuxt/tsconfig.app.json"
},
{
"path": "./.nuxt/tsconfig.server.json"
},
{
"path": "./.nuxt/tsconfig.shared.json"
},
{
"path": "./.nuxt/tsconfig.node.json"
}
{{#unless (or (eq backend "convex") (eq backend "none"))}}
"references": [{
"path": "../server"
}]
,
{
"path": "../server"
}
{{/unless}}
]
}