diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2023-12-06 18:49:34 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-06 18:49:34 -0500 |
commit | 68d356eed91731cd0c13eb946f296aa90ef4d5ac (patch) | |
tree | d08389fa2e4a2d6a0c65f312fff17142f80b956d /cli/build.rs | |
parent | a931a47511f0f1160f2446a543fed867ea59703b (diff) |
feat: TypeScript 5.3 (#21480)
https://github.com/denoland/TypeScript/pull/9
Diffstat (limited to 'cli/build.rs')
-rw-r--r-- | cli/build.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/build.rs b/cli/build.rs index 4400e3e8b..d7f373b99 100644 --- a/cli/build.rs +++ b/cli/build.rs @@ -428,7 +428,7 @@ fn main() { ); let ts_version = ts::version(); - debug_assert_eq!(ts_version, "5.2.2"); // bump this assertion when it changes + debug_assert_eq!(ts_version, "5.3.3"); // bump this assertion when it changes println!("cargo:rustc-env=TS_VERSION={}", ts_version); println!("cargo:rerun-if-env-changed=TS_VERSION"); |