diff options
author | Kitson Kelly <me@kitsonkelly.com> | 2021-06-21 21:47:09 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-21 21:47:09 +1000 |
commit | 3f5fbea17c10c65e46a881c6a008ed23018eadf1 (patch) | |
tree | 350f40047038c8ae0eb6a7a747b71fc1341a66cc | |
parent | afe89e8850d9ca2adcf73c8d2d63f5054a594878 (diff) |
fix: add support for module es2020 to Deno.emit (#11065)
-rw-r--r-- | cli/dts/lib.deno.unstable.d.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cli/dts/lib.deno.unstable.d.ts b/cli/dts/lib.deno.unstable.d.ts index 3b709cde1..42f3c0202 100644 --- a/cli/dts/lib.deno.unstable.d.ts +++ b/cli/dts/lib.deno.unstable.d.ts @@ -325,6 +325,7 @@ declare namespace Deno { | "umd" | "es6" | "es2015" + | "es2020" | "esnext"; /** Do not generate custom helper functions like `__extends` in compiled * output. Defaults to `false`. */ |