Skip to content
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