Когда вы используете Angular CLI для создания производственного кода, ваш код уже уменьшен и увеличен (UglifyJS), как сказано в Angular doc
The --prod meta-flag engages the following build optimization features.
- Ahead-of-Time (AOT) Compilation: pre-compiles Angular component templates.
- Production mode: deploys the production environment which enables production mode.
- Bundling: concatenates your many application and library files into a few bundles.
- Minification: removes excess whitespace, comments, and optional tokens.
- Uglification: rewrites code to use short, cryptic variable and function names.
- Dead code elimination: removes unreferenced modules and much unused code.
Если вы не получили код обьявления, вам может понадобиться проверить файл angular.json и убедиться, что он содержит следующие параметры:
"configurations": {
"production": {
"optimization": true,