Alan Agius 64ca38bda5 test(@angular-devkit/build-webpack): disable webpack cache during unit tests
Unit tests are not isolated and therefore using cache might be flakey due to race conditions.
2021-10-06 19:11:47 -04:00

35 lines
750 B
JSON

{
"$schema": "../../../../packages/angular_devkit/core/src/workspace/workspace-schema.json",
"version": 1,
"newProjectRoot": "./projects",
"cli": {
"cache": {
"enabled": false
}
},
"schematics": {},
"targets": {},
"projects": {
"app": {
"root": "src",
"sourceRoot": "src",
"projectType": "application",
"schematics": {},
"targets": {
"build-webpack": {
"builder": "../../:webpack",
"options": {
"webpackConfig": "webpack.config.js"
}
},
"serve-webpack": {
"builder": "../../:webpack-dev-server",
"options": {
"webpackConfig": "webpack.config.js"
}
}
}
}
}
}