feat: TypeScript 5.4 (#23086)

Fork PR: https://github.com/denoland/TypeScript/pull/10

Closes #23080
This commit is contained in:
David Sherret 2024-03-26 18:52:57 -04:00 committed by GitHub
parent 6b95c53e48
commit ac4a5f74b8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
39 changed files with 5613 additions and 2672 deletions

View file

@ -6,5 +6,5 @@ Deno.test(function version() {
const pattern = /^\d+\.\d+\.\d+/;
assert(pattern.test(Deno.version.deno));
assert(pattern.test(Deno.version.v8));
assertEquals(Deno.version.typescript, "5.3.3");
assertEquals(Deno.version.typescript, "5.4.3");
});