2b704f0586
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 | ||
index.ts | ||
package.json | ||
private_export.ts | ||
private_export_testing.ts | ||
rollup.config.js | ||
testing.ts | ||
tsconfig-es5.json | ||
tsconfig-es2015.json |