chore(config): tweak tsconfig

This commit is contained in:
☙◦ The Tablet ❀ GamerGirlandCo ◦❧ 2023-09-25 19:55:31 -04:00
parent 703b9b4244
commit 8082446071
Signed by: tablet
GPG Key ID: 924A5F6AF051E87C
2 changed files with 11 additions and 2 deletions

View File

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

View File

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