(options?: ApplicationConfig, context?: BootstrapContext)
| 164 | } |
| 165 | |
| 166 | function createProvidersConfig(options?: ApplicationConfig, context?: BootstrapContext) { |
| 167 | return { |
| 168 | platformRef: context?.platformRef, |
| 169 | appProviders: [...BROWSER_MODULE_PROVIDERS, ...(options?.providers ?? [])], |
| 170 | platformProviders: INTERNAL_BROWSER_PLATFORM_PROVIDERS, |
| 171 | }; |
| 172 | } |
| 173 | |
| 174 | /** Attempt to resolve component resources before bootstrapping in JIT mode. */ |
| 175 | async function resolveJitResources(): Promise<void> { |
no outgoing calls
no test coverage detected
searching dependent graphs…