diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2024-07-10 14:51:55 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-10 13:51:55 +0000 |
commit | 8b34c4d75b3f9ae27380e30c7d192fe55e40196b (patch) | |
tree | 37702478197ea787c9800a4e49fa6465e2692531 /cli/args/mod.rs | |
parent | 82f9216610ec9cc32697ca77cb95da4b229117d4 (diff) |
fix: memory leak when transpiling (#24490)
This commit fixes memory leak described in
https://github.com/denoland/deno/issues/24380.
This is done by upgrading following crates:
- deno_ast
- deno_graph
- eszip
- dprint-plugin-typescript
- deno_lint
- deno_doc
- deno_emit
Diffstat (limited to 'cli/args/mod.rs')
-rw-r--r-- | cli/args/mod.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cli/args/mod.rs b/cli/args/mod.rs index e048b332a..6a8eaa268 100644 --- a/cli/args/mod.rs +++ b/cli/args/mod.rs @@ -198,6 +198,7 @@ pub fn ts_config_to_transpile_and_emit_options( jsx_import_source: options.jsx_import_source, precompile_jsx, precompile_jsx_skip_elements: options.jsx_precompile_skip_elements, + precompile_jsx_dynamic_props: None, transform_jsx, var_decl_imports: false, }, |