From 218bd5f565b226e838a130118e35db7b80808cb2 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: Tue, 3 Oct 2023 01:20:29 -0400 Subject: [PATCH] chore(workspace): allow implicit `this` in tsconfig --- server/tsconfig.json | 10 +++++----- tsconfig.json | 14 +++++++------- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/server/tsconfig.json b/server/tsconfig.json index 2f49bfa..78394c7 100644 --- a/server/tsconfig.json +++ b/server/tsconfig.json @@ -1,7 +1,7 @@ { - "extends": "../.nuxt/tsconfig.server.json", - "compilerOptions": { - "allowJs": true, - "outDir": "../out" - } + "extends": "../.nuxt/tsconfig.server.json", + "compilerOptions": { + "allowJs": true, + "outDir": "../out" + } } diff --git a/tsconfig.json b/tsconfig.json index b5831f0..41592b5 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,9 +1,9 @@ { - // https://nuxt.com/docs/guide/concepts/typescript - "compilerOptions": { - "allowJs": true, - "noImplicitAny": false - }, - "extends": "./.nuxt/tsconfig.json", - + // https://nuxt.com/docs/guide/concepts/typescript + "compilerOptions": { + "allowJs": true, + "noImplicitAny": false, + "noImplicitThis": false + }, + "extends": "./.nuxt/tsconfig.json" }