We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
strictMetadataEmit
1 parent 042c33c commit 8763c64Copy full SHA for 8763c64
packages/ngtools/webpack/src/angular_compiler_plugin.ts
@@ -276,6 +276,14 @@ export class AngularCompilerPlugin {
276
);
277
}
278
279
+ if (this._compilerOptions.strictMetadataEmit) {
280
+ this._warnings.push(
281
+ new Error(
282
+ `Using Angular compiler option 'strictMetadataEmit' for applications might cause undefined behavior.`,
283
+ ),
284
+ );
285
+ }
286
+
287
if (this._discoverLazyRoutes === false && this.options.additionalLazyModules
288
&& Object.keys(this.options.additionalLazyModules).length > 0) {
289
this._warnings.push(
0 commit comments