Skip to content
This repository has been archived by the owner on Dec 6, 2021. It is now read-only.

Commit

Permalink
fix(typescript): Don't set transpileOnly in parallel mode (#573)
Browse files Browse the repository at this point in the history
  • Loading branch information
magcius authored Apr 30, 2020
1 parent dc96a56 commit 823c0c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/typescript/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ exports.apply = (
.options(
Object.assign(
{
transpileOnly: true,
transpileOnly: api.config.parallel ? undefined : true,
appendTsSuffixTo: ['\\.vue$'],
// https://github.com/TypeStrong/ts-loader#happypackmode-boolean-defaultfalse
happyPackMode: api.config.parallel
Expand Down

0 comments on commit 823c0c2

Please sign in to comment.