fix(config): move extends directive to be first in tsconfig

fixes webstorm bitching about typescript
This commit is contained in:
☙◦ The Tablet ❀ GamerGirlandCo ◦❧ 2023-12-29 12:44:19 -05:00
parent cc17d98fe4
commit 4388a09481
Signed by: tablet
GPG Key ID: 924A5F6AF051E87C

View File

@ -1,5 +1,6 @@
{ {
// https://nuxt.com/docs/guide/concepts/typescript // https://nuxt.com/docs/guide/concepts/typescript
"extends": "./.nuxt/tsconfig.json",
"compilerOptions": { "compilerOptions": {
"allowJs": true, "allowJs": true,
"noImplicitAny": false, "noImplicitAny": false,
@ -9,6 +10,5 @@
// "@dbconfig": ["./lib/dbconfig.ts"], // "@dbconfig": ["./lib/dbconfig.ts"],
// "@functions": ["./lib/functions.ts"] // "@functions": ["./lib/functions.ts"]
// } // }
}, }
"extends": "./.nuxt/tsconfig.json"
} }