Switch to bundler TypeScript moduleResolution (#1170)

This commit is contained in:
Sasha Sorokin
2023-06-11 18:33:38 +01:00
committed by GitHub
parent bf615303f1
commit 20d1c4d242
3 changed files with 78 additions and 68 deletions

View File

@@ -195,6 +195,12 @@ export default defineNuxtConfig({
shim: false,
strict: true,
typeCheck: true,
tsConfig: {
compilerOptions: {
moduleResolution: 'bundler',
allowImportingTsExtensions: true,
},
},
},
})