diff options
| author | David Sherret <dsherret@users.noreply.github.com> | 2024-09-04 17:39:30 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-09-04 17:39:30 +0200 |
| commit | 07ad47da53d1fbabf6fc5d26c89dc6ba683d27fd (patch) | |
| tree | 9b59f66129ec8a9b6bb1737e8733fd2d352c1f98 /cli/Cargo.toml | |
| parent | 5400f1af6cdca6a71de80093c9d49cdde1f34ce5 (diff) | |
BREAKING(config): make supported compilerOptions an allow list (#25432)
Deno has been using a deny list, which doesn't make sense because a lot
of these options don't even work.
Closes #25363
Diffstat (limited to 'cli/Cargo.toml')
| -rw-r--r-- | cli/Cargo.toml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/Cargo.toml b/cli/Cargo.toml index d7d8eeb7c..016488e5c 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -65,7 +65,7 @@ winres.workspace = true [dependencies] deno_ast = { workspace = true, features = ["bundler", "cjs", "codegen", "proposal", "react", "sourcemap", "transforms", "typescript", "view", "visit"] } deno_cache_dir = { workspace = true } -deno_config = { version = "=0.32.0", features = ["workspace", "sync"] } +deno_config = { version = "=0.33.1", features = ["workspace", "sync"] } deno_core = { workspace = true, features = ["include_js_files_for_snapshotting"] } deno_doc = { version = "0.148.0", features = ["html", "syntect"] } deno_graph = { version = "=0.82.0" } |
