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

Commit 090f26a

Browse files
committed
feat(*): exclude noEmit option
1 parent 7d0807f commit 090f26a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
"ps-node": "0.0.5",
6565
"rimraf": "^2.5.0",
6666
"tslint": "3.5.0-dev.1",
67-
"typescript": "^1.9.0-dev.20160319",
67+
"typescript": "^1.9.0-dev.20160321",
6868
"webpack": "^1.12.12",
6969
"webpack-dev-server": "^1.14.1"
7070
}

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', 'out') as any;
194+
options = _.omit(options, 'outDir', 'files', 'out', 'noEmit') as any;
195195
options.externals.push.apply(options.externals, tsFiles);
196196

197197
let babelImpl: any;

0 commit comments

Comments
 (0)