Skip to content
This repository was archived by the owner on Dec 1, 2019. It is now read-only.

Commit 53276b0

Browse files
committed
fix(*): ignore out option. fixes #96
1 parent 06fa0ec commit 53276b0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/instance.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ export function ensureInstance(webpack: IWebPack, options: ICompilerOptions, ins
191191
sourceRoot: process.cwd()
192192
});
193193

194-
options = _.omit(options, 'outDir', 'files') as any;
194+
options = _.omit(options, 'outDir', 'files', 'out') as any;
195195
options.externals.push.apply(options.externals, tsFiles);
196196

197197
let babelImpl: any;

0 commit comments

Comments
 (0)