Skip to content

Commit

Permalink
feat: transpile only bundled files
Browse files Browse the repository at this point in the history
feat: transpile only bundled files
  • Loading branch information
XVincentX authored Feb 19, 2019
2 parents 19a3d07 + 31af297 commit 4f85777
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/webpack.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,9 @@ module.exports = (baseConfig: any, env: any, config: any) => {
use: [
{
loader: require.resolve('ts-loader'),
options: {},
options: {
onlyCompileBundledFiles: true, // https://github.com/TypeStrong/ts-loader#onlycompilebundledfiles-boolean-defaultfalse
},
},
],
});
Expand Down

0 comments on commit 4f85777

Please sign in to comment.