chore(config): tweak tsconfig

This commit is contained in:
parent 703b9b4244
commit 8082446071
Signed by: tablet
GPG Key ID: 924A5F6AF051E87C
2 changed files with 11 additions and 2 deletions

@ -1,3 +1,7 @@
{ {
"extends": "../.nuxt/tsconfig.server.json" "extends": "../.nuxt/tsconfig.server.json",
"compilerOptions": {
"allowJs": true,
"outDir": "../out"
}
} }

@ -1,4 +1,9 @@
{ {
// https://nuxt.com/docs/guide/concepts/typescript // https://nuxt.com/docs/guide/concepts/typescript
"extends": "./.nuxt/tsconfig.json" "compilerOptions": {
"allowJs": true,
"noImplicitAny": false
},
"extends": "./.nuxt/tsconfig.json",
} }