Skip to content

Commit a987cf5

Browse files
texelhansl
authored andcommitted
fix(build): correct forkChecker option for ATS. (#3011)
1 parent 88131a0 commit a987cf5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/angular-cli/models/webpack-build-test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ const getWebpackTestConfig = function (projectRoot, environment, appConfig, test
7979
tsconfig: path.resolve(appRoot, appConfig.tsconfig),
8080
module: 'commonjs',
8181
target: 'es5',
82-
useForkChecker: true
82+
forkChecker: true
8383
}
8484
},
8585
{

packages/angular-cli/models/webpack-build-typescript.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ export const getWebpackNonAotConfigPartial = function(projectRoot: string, appCo
3030
loaders: [{
3131
loader: 'awesome-typescript-loader',
3232
query: {
33-
useForkChecker: true,
33+
forkChecker: true,
3434
tsconfig: path.resolve(appRoot, appConfig.tsconfig)
3535
}
3636
}, {

0 commit comments

Comments
 (0)