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", + }