Skip to content

Commit

Permalink
Bump version to 4.5.3 and LKG
Browse files Browse the repository at this point in the history
  • Loading branch information
typescript-bot committed Dec 7, 2021
1 parent ae44862 commit 002c79b
Show file tree
Hide file tree
Showing 10 changed files with 2,930 additions and 2,818 deletions.
2 changes: 1 addition & 1 deletion lib/cancellationToken.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion lib/lib.es5.d.ts
Expand Up @@ -1515,7 +1515,7 @@ interface Promise<T> {
type Awaited<T> =
T extends null | undefined ? T : // special case for `null | undefined` when not in `--strictNullChecks` mode
T extends object & { then(onfulfilled: infer F): any } ? // `await` only unwraps object types with a callable `then`. Non-object types are not unwrapped
F extends ((value: infer V) => any) ? // if the argument to `then` is callable, extracts the argument
F extends ((value: infer V, ...args: any) => any) ? // if the argument to `then` is callable, extracts the first argument
Awaited<V> : // recursively unwrap the value
never : // the argument to `then` was not callable
T; // non-object or non-thenable
Expand Down
621 changes: 319 additions & 302 deletions lib/tsc.js

Large diffs are not rendered by default.

1,217 changes: 618 additions & 599 deletions lib/tsserver.js

Large diffs are not rendered by default.

1,169 changes: 594 additions & 575 deletions lib/tsserverlibrary.js

Large diffs are not rendered by default.

987 changes: 503 additions & 484 deletions lib/typescript.js

Large diffs are not rendered by default.

987 changes: 503 additions & 484 deletions lib/typescriptServices.js

Large diffs are not rendered by default.

759 changes: 389 additions & 370 deletions lib/typingsInstaller.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -2,7 +2,7 @@
"name": "typescript",
"author": "Microsoft Corp.",
"homepage": "https://www.typescriptlang.org/",
"version": "4.5.2",
"version": "4.5.3",
"license": "Apache-2.0",
"description": "TypeScript is a language for application scale JavaScript development",
"keywords": [
Expand Down
2 changes: 1 addition & 1 deletion src/compiler/corePublic.ts
Expand Up @@ -5,7 +5,7 @@ namespace ts {
// The following is baselined as a literal template type without intervention
/** The version of the TypeScript compiler release */
// eslint-disable-next-line @typescript-eslint/no-inferrable-types
export const version = "4.5.2" as string;
export const version = "4.5.3" as string;

/**
* Type of objects whose values are all of the same type.
Expand Down

0 comments on commit 002c79b

Please sign in to comment.