FWIW, in order to get angular 7.x to use the sass
package and not try to install node-sass, I had to:
- remove
@angular-devkit/build-angular
from my package.json - delete node_modules
- npm install
- npm i -D sass
- add back in the 0.13.10 of
@angular-devkit/build-angular
to package.json - npm install again.