Skip to content

Commit

Permalink
update 7.0.0 doc too
Browse files Browse the repository at this point in the history
  • Loading branch information
existentialism committed Mar 7, 2019
1 parent 531faab commit 845d4ff
Showing 1 changed file with 10 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,17 @@ Does not type-check its input. For that, you will need to install and set up Typ

## Caveats

* Does not support [`namespace`][namespace]s. **Workaround**: Move to using [file exports][fm], or migrate to using the `module { }` syntax instead.
* Does not support [`namespace`][namespace]s.

**Workaround**: Move to using [file exports][fm], or migrate to using the `module { }` syntax instead.

* Does not support [`const enum`][const_enum]s because those require type information to compile.
**Workaround**: Remove the `const`, which makes it available at runtime.
* Does not support [`export =`][exin] and [`import =`][exin], because those cannot be compiled to ES.next. **Workaround**: Convert to using `export default` and `export const`, and `import x, {y} from "z"`.

**Workaround**: Remove the `const`, which makes it available at runtime.

* Does not support [`export =`][exin] and [`import =`][exin], because those cannot be compiled to ES.next.

**Workaround**: Convert to using `export default` and `export const`, and `import x, {y} from "z"`.

## Example

Expand Down

0 comments on commit 845d4ff

Please sign in to comment.