diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2021-06-06 18:42:12 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-06 18:42:12 +0200 |
commit | 3b220c64f615a4e18346e8a1c07ad7b1aae9fcc6 (patch) | |
tree | 9329ed9e4d9881c1ac166aef65ea2821fc121761 /cli/ast.rs | |
parent | a66f327250d9df77816e80e7d411b232f8b08b11 (diff) |
chore: upgrade crates (#10867)
* deno_doc - 0.5.0
* deno_lint - 0.6.0
* dprint-plugin-typescript - 0.46.0
* dprint-plugin-markdown - 0.8.0
* dprint-plugin-json - 0.12.0
* swc_bundler - 0.37.4
* swc_ecmascript - 0.36.0
Diffstat (limited to 'cli/ast.rs')
-rw-r--r-- | cli/ast.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/cli/ast.rs b/cli/ast.rs index 636dc1881..f5e8802e6 100644 --- a/cli/ast.rs +++ b/cli/ast.rs @@ -273,6 +273,9 @@ fn strip_config_from_emit_options( } }, use_define_for_class_fields: true, + // TODO(bartlomieju): this could be changed to `false` to provide `export {}` + // in Typescript files without manual changes + no_empty_export: true, } } |