chore(workspace): allow implicit this in tsconfig

This commit is contained in:
☙◦ The Tablet ❀ GamerGirlandCo ◦❧ 2023-10-03 01:20:29 -04:00
parent 6167a9ea70
commit 218bd5f565
Signed by: tablet
GPG Key ID: 924A5F6AF051E87C
2 changed files with 12 additions and 12 deletions

View File

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