next/tsconfig.json
☙◦ The Tablet ❀ GamerGirlandCo ◦❧ 0d6acdf174
refactor(workspace): update tsconfig files
enable `esmoduleinterop` and `allowsyntheticdefaultimports`
2024-04-02 01:21:13 -04:00

14 lines
335 B
JSON

{
"extends": "./.nuxt/tsconfig.json",
// https://nuxt.com/docs/guide/concepts/typescript
"compilerOptions": {
"allowJs": true,
"esModuleInterop": true,
"noImplicitAny": false,
"noImplicitThis": false,
"verbatimModuleSyntax": false,
"forceConsistentCasingInFileNames": false,
"allowSyntheticDefaultImports": true
},
}