From 80824460710c4ebb6e60f5f3633c5a6524f6f6a9 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: Mon, 25 Sep 2023 19:55:31 -0400 Subject: [PATCH] chore(config): tweak tsconfig --- server/tsconfig.json | 6 +++++- tsconfig.json | 7 ++++++- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/server/tsconfig.json b/server/tsconfig.json index b9ed69c..2f49bfa 100644 --- a/server/tsconfig.json +++ b/server/tsconfig.json @@ -1,3 +1,7 @@ { - "extends": "../.nuxt/tsconfig.server.json" + "extends": "../.nuxt/tsconfig.server.json", + "compilerOptions": { + "allowJs": true, + "outDir": "../out" + } } diff --git a/tsconfig.json b/tsconfig.json index a746f2a..b5831f0 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,4 +1,9 @@ { // https://nuxt.com/docs/guide/concepts/typescript - "extends": "./.nuxt/tsconfig.json" + "compilerOptions": { + "allowJs": true, + "noImplicitAny": false + }, + "extends": "./.nuxt/tsconfig.json", + }