@ngtools/webpack 20.3.15 → 20.3.16

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ngtools/webpack",
3
- "version": "20.3.15",
3
+ "version": "20.3.16",
4
4
  "description": "Webpack plugin that AoT compiles your Angular components and modules.",
5
5
  "main": "./src/index.js",
6
6
  "typings": "src/index.d.ts",
@@ -11,9 +11,6 @@ export interface TypeScriptPathsPluginOptions extends Pick<CompilerOptions, 'pat
11
11
  }
12
12
  type ResolverRequest = NonNullable<Parameters<Parameters<Resolver['resolve']>[4]>[2]>;
13
13
  interface PathPluginResolverRequest extends ResolverRequest {
14
- context?: {
15
- issuer?: string;
16
- };
17
14
  typescriptPathMapped?: boolean;
18
15
  }
19
16
  export declare class TypeScriptPathsPlugin {