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
This commit is contained in:
Bartek Iwańczuk 2024-07-10 14:51:55 +01:00 committed by GitHub
parent 82f9216610
commit 8b34c4d75b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 63 additions and 72 deletions

View file

@ -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,
},