* The Angular compilation state that is maintained across each Webpack compilation.
| 66 | * The Angular compilation state that is maintained across each Webpack compilation. |
| 67 | */ |
| 68 | interface AngularCompilationState { |
| 69 | resourceLoader?: WebpackResourceLoader; |
| 70 | previousUnused?: Set<string>; |
| 71 | pathsPlugin: TypeScriptPathsPlugin; |
| 72 | } |
| 73 | |
| 74 | const PLUGIN_NAME = 'angular-compiler'; |
| 75 | const compilationFileEmitters = new WeakMap<Compilation, FileEmitterCollection>(); |
nothing calls this directly
no outgoing calls
no test coverage detected