fix(aio): support ValueModule symbols in the TypeScript source (#14464)

In #14388 the following syntax is used in the source:

```
import * as view_utils from './linker/view_utils';
import * as viewEngine from './view/index';
…
export {view_utils as ɵview_utils};
export {viewEngine as ɵviewEngine};
```

The usage of `export {... as ...}` was not being recognised by dgeni.

It is now being recognised and a temporary dummy output file is being
rendered. Later we will either ignore this doctype altogether or find
a better way of rendering it.
This commit is contained in:
Pete Bacon Darwin
2017-02-13 23:46:44 +01:00
committed by Miško Hevery
parent 221b7a1176
commit 1dc9be4b7d
3 changed files with 25 additions and 6 deletions

View File

@ -0,0 +1 @@
{% extends 'interface.template.html' %}