Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[WIP] ESM support for node v13 #1010

Merged
merged 17 commits into from May 3, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
11 changes: 10 additions & 1 deletion .github/workflows/continuous-integration.yml
Expand Up @@ -7,7 +7,7 @@ jobs:
strategy:
fail-fast: false
matrix:
flavor: [1, 2, 3, 4]
flavor: [1, 2, 3, 4, 5, 6, 7]
include:
- flavor: 1
node: 6
Expand All @@ -21,6 +21,15 @@ jobs:
- flavor: 4
node: 13
typescript: typescript@next
- flavor: 5
node: 14
typescript: typescript@latest
- flavor: 6
node: 14
typescript: typescript@2.7
- flavor: 7
node: 14
typescript: typescript@next
steps:
# checkout code
- uses: actions/checkout@v2
Expand Down
4 changes: 4 additions & 0 deletions README.md
Expand Up @@ -7,6 +7,10 @@

> TypeScript execution and REPL for node.js, with source map support. **Works with `typescript@>=2.7`**.

### *Experimental ESM support*

Native ESM support is currently experimental. For usage, limitations, and to provide feedback, see [#1007](https://github.com/TypeStrong/ts-node/issues/1007).

## Installation

```sh
Expand Down