When taking production build I am getting error like Could not find plugin "proposal-numeric-separator". Ensure there is an entry in ./available-plugins.js for it.
Here I have attached my error screenshot. We have added "@babel/preset-env": "^7.8.7",
in dependencies
as well.
Asked
Active
Viewed 912 times
2

Kavin Kumar Arumugam
- 1,792
- 3
- 28
- 47
-
1You might face [this issue](https://github.com/angular/angular-cli/issues/17262) – Shlang Apr 04 '20 at 11:27
1 Answers
1
Had the same issue during angular 8 PROD build. Following has fixed in dev dependencies:
"@angular-devkit/build-angular": "^0.803.23"
"@babel/compat-data": "^7.8.0"
Hope it helps.

Anish K Pillai
- 796
- 6
- 10