Skip to content

Commit

Permalink
Add support for ESM
Browse files Browse the repository at this point in the history
  • Loading branch information
demurgos committed Jan 9, 2018
1 parent 6890b35 commit 7e15cda
Show file tree
Hide file tree
Showing 27 changed files with 276 additions and 427 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Next

- **[Feature]** Expose detailed errors for endpoint registration.
- **[Feature]** Support ES modules (ESM)
- **[Internal]** Update project tools to [turbo-gulp](https://www.npmjs.com/package/turbo-gulp)
- **[Internal]** Enable integration with Codecov
- **[Internal]** Enable integration with Greenkeeper
Expand Down
6 changes: 3 additions & 3 deletions gulpfile.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
import * as buildTools from "turbo-gulp";

import * as gulp from "gulp";
import * as minimist from "minimist";
import { ParsedArgs } from "minimist";
import gulp from "gulp";
import minimist, { ParsedArgs } from "minimist";

interface Options {
devDist?: string;
Expand Down Expand Up @@ -69,6 +68,7 @@ const example: buildTools.NodeTarget = {
tsconfigJson: "src/example/tsconfig.json",
mainModule: "example/main",
customTypingsDir: "src/custom-typings",
outModules: buildTools.OutModules.Both,
tscOptions: {
skipLibCheck: true,
},
Expand Down
Loading

0 comments on commit 7e15cda

Please sign in to comment.