DEV Community

Salah Hasanin
Salah Hasanin

Posted on

Answer: Could not find plugin “proposal-numeric-separator” in angular app

Thanks to nicolo-ribaudo from issue8680

Adding the dependency @babel/compat-data": "7.8.0" fixed the issue for me.

vi package.json

    "dependencies": {
        "@babel/compat-data": "7.8.0",
        ...
    }

npm install

ng build --prod

Top comments (0)