17ffd95a70
Upgrade both Nuxt apps to Nuxt 4.4.6 (vue-tsc 3, TypeScript 5.6, undici 7) and add a root tsconfig.json to each app. Fix the strict-null / noUncheckedIndexedAccess errors surfaced by Nuxt 4's stricter generated tsconfig and vue-tsc 3. Drop the nuxt-oidc-auth pnpm patch (Nuxt 4 fixes the prepare:types crash natively).
7 lines
242 B
JSON
7 lines
242 B
JSON
{
|
|
// Root tsconfig for `nuxt typecheck` / IDEs. Extends the config Nuxt
|
|
// generates into .nuxt/ on `nuxt prepare` (aliases, auto-imports, etc.).
|
|
// https://nuxt.com/docs/guide/concepts/typescript
|
|
"extends": "./.nuxt/tsconfig.json"
|
|
}
|