fix(linker/compiler): rename const to avoid duplicate declaration (#10457)
Currently in the `linker/compiler.ts` file, the **same identifier** is used in **two declarations**:
```typescript
export type CompilerOptions = { … }
…
export const CompilerOptions = new OpaqueToken('compilerOptions');
```
This breaks the API doc generation. I’m surprised that this was not flagged by the tsc.
The duplicate declaration was introduced in 46b212706b
.
This commit is contained in:

committed by
Alex Rickabaugh

parent
ce5ba80792
commit
2b704f0586
@ -7,7 +7,7 @@
|
||||
*/
|
||||
|
||||
// Public API for compiler
|
||||
export {Compiler, CompilerFactory, CompilerOptions, ComponentStillLoadingError, ModuleWithComponentFactories} from './linker/compiler';
|
||||
export {COMPILER_OPTIONS, Compiler, CompilerFactory, CompilerOptions, ComponentStillLoadingError, ModuleWithComponentFactories} from './linker/compiler';
|
||||
export {ComponentFactory, ComponentRef} from './linker/component_factory';
|
||||
export {ComponentFactoryResolver, NoComponentFactoryError} from './linker/component_factory_resolver';
|
||||
export {ComponentResolver} from './linker/component_resolver';
|
||||
|
@ -126,7 +126,7 @@ export type CompilerOptions = {
|
||||
*
|
||||
* @experimental
|
||||
*/
|
||||
export const CompilerOptions = new OpaqueToken('compilerOptions');
|
||||
export const COMPILER_OPTIONS = new OpaqueToken('compilerOptions');
|
||||
|
||||
/**
|
||||
* A factory for creating a Compiler
|
||||
|
Reference in New Issue
Block a user