mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
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
|
||
|---|---|---|
| .. | ||
| src | ||
| test | ||
| testing | ||
| core_private.ts | ||
| core_private_testing.ts | ||
| index.ts | ||
| package.json | ||
| private_export.ts | ||
| rollup.config.js | ||
| testing.ts | ||
| tsconfig-es5.json | ||
| tsconfig-es2015.json | ||