Skip to content

Commit

Permalink
fix(build): correct forkChecker option for ATS. (#3011)
Browse files Browse the repository at this point in the history
  • Loading branch information
texel authored and hansl committed Nov 4, 2016
1 parent 88131a0 commit a987cf5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/angular-cli/models/webpack-build-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ const getWebpackTestConfig = function (projectRoot, environment, appConfig, test
tsconfig: path.resolve(appRoot, appConfig.tsconfig),
module: 'commonjs',
target: 'es5',
useForkChecker: true
forkChecker: true
}
},
{
Expand Down
2 changes: 1 addition & 1 deletion packages/angular-cli/models/webpack-build-typescript.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export const getWebpackNonAotConfigPartial = function(projectRoot: string, appCo
loaders: [{
loader: 'awesome-typescript-loader',
query: {
useForkChecker: true,
forkChecker: true,
tsconfig: path.resolve(appRoot, appConfig.tsconfig)
}
}, {
Expand Down

0 comments on commit a987cf5

Please sign in to comment.