chore: reference tsconfig from nuxt 4

This commit is contained in:
Nicola Spadari
2025-07-16 14:23:00 +02:00
parent 40ad0264d4
commit f78b083553

View File

@@ -1,13 +1,22 @@
{
"extends": "./.nuxt/tsconfig.json",
"compilerOptions": {
"composite": true,
"target": "ESNext",
"module": "ESNext",
"strict": true
"module": "ESNext"
},
"include": [
".nuxt/nuxt.d.ts",
"env.d.ts",
"**/*"
]
"references": [
{
"path": "./.nuxt/tsconfig.app.json"
},
{
"path": "./.nuxt/tsconfig.server.json"
},
{
"path": "./.nuxt/tsconfig.shared.json"
},
{
"path": "./.nuxt/tsconfig.node.json"
}
],
"files": []
}