A little helper utility to allow setting max_old_space_size on the node process that runs the angular cli.
- Add a config option to your project's package.json:
{
"config": {
"max_old_space_size": 3072
}
}
- Change all references in your npm scripts from
ng
tong-alias
- Ensure that
setup-ng-alias
runs before you try to runng-alias
. i.e. with aprebuild
script:
{
"scripts": {
"prebuild": "setup-ng-alias",
"build": "ng-alias build --prod"
}
}
This script has been tested on Windows and Unix environments.