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

fixes webstorm bitching about typescript
This commit is contained in:
parent cc17d98fe4
commit 4388a09481
Signed by: tablet
GPG Key ID: 924A5F6AF051E87C

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