Skip to content

feat(@ngtools/webpack): made it possible to skip removal of decorator… #10060

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 3 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions packages/@ngtools/webpack/src/angular_compiler_plugin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,8 @@ export interface AngularCompilerPluginOptions {
entryModule?: string;
mainPath?: string;
skipCodeGeneration?: boolean;
// Allows to disable the decorators in AOT production as an option.
skipRemoveDecorators?: boolean;
hostReplacementPaths?: { [path: string]: string };
forkTypeChecker?: boolean;
// TODO: remove singleFileIncludes for 2.0, this is just to support old projects that did not
Expand Down Expand Up @@ -710,8 +712,8 @@ export class AngularCompilerPlugin {
if (this._JitMode) {
// Replace resources in JIT.
this._transformers.push(replaceResources(isAppPath));
} else {
// Remove unneeded angular decorators.
} else if (!this._options.skipRemoveDecorators) {
// Remove unneeded angular decorators if options.skipRemoveDecorators is not true.
this._transformers.push(removeDecorators(isAppPath, getTypeChecker));
}

Expand Down