From 4388a09481ab43a3b69cf997b0227bc4d5fb5655 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=98=99=E2=97=A6=20The=20Tablet=20=E2=9D=80=20GamerGirla?= =?UTF-8?q?ndCo=20=E2=97=A6=E2=9D=A7?= Date: Fri, 29 Dec 2023 12:44:19 -0500 Subject: [PATCH] fix(config): move `extends` directive to be first in tsconfig fixes webstorm bitching about typescript --- tsconfig.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 9ddd4ba..ca44d8b 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -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" + } }