Skip to content

Commit

Permalink
fix(vue): Standalone tsconfig moduleResultion should be node
Browse files Browse the repository at this point in the history
  • Loading branch information
ndcunningham committed Oct 20, 2023
1 parent b30f3c5 commit c47a6b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/vue/src/utils/create-ts-config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export function createTsConfig(
strict: options.strict,
jsx: 'preserve',
jsxImportSource: 'vue',
moduleResolution: 'bundler',
moduleResolution: 'node',
resolveJsonModule: true,
verbatimModuleSyntax: options.unitTestRunner !== 'jest',
},
Expand Down

0 comments on commit c47a6b8

Please sign in to comment.