@nuxt/docs-nightly 4.2.0-29345561.934dc002 → 4.2.0-29349287.2cf77090
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1173,8 +1173,13 @@ However, to take advantage of improved type checking, you can opt in to the new
|
|
|
1173
1173
|
|
|
1174
1174
|
1. **Update your root `tsconfig.json`** to use project references:
|
|
1175
1175
|
|
|
1176
|
+
::note
|
|
1177
|
+
If your `tsconfig.json` currently has an `"extends": "./.nuxt/tsconfig.json"` line, **remove it** before adding the references. Project references and extends are mutually exclusive.
|
|
1178
|
+
::
|
|
1179
|
+
|
|
1176
1180
|
```json
|
|
1177
1181
|
{
|
|
1182
|
+
// Remove "extends": "./.nuxt/tsconfig.json" if present
|
|
1178
1183
|
"files": [],
|
|
1179
1184
|
"references": [
|
|
1180
1185
|
{ "path": "./.nuxt/tsconfig.app.json" },
|