Skip to content

Commit 712967b

Browse files
author
TypeScript Bot
committed
Bump version to 3.8.3 and LKG
1 parent d876564 commit 712967b

8 files changed

+571
-283
lines changed

lib/tsc.js

+87-40
Large diffs are not rendered by default.

lib/tsserver.js

+100-54
Large diffs are not rendered by default.

lib/tsserverlibrary.js

+100-54
Large diffs are not rendered by default.

lib/typescript.js

+95-45
Large diffs are not rendered by default.

lib/typescriptServices.js

+95-45
Large diffs are not rendered by default.

lib/typingsInstaller.js

+92-43
Large diffs are not rendered by default.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "typescript",
33
"author": "Microsoft Corp.",
44
"homepage": "https://www.typescriptlang.org/",
5-
"version": "3.8.2",
5+
"version": "3.8.3",
66
"license": "Apache-2.0",
77
"description": "TypeScript is a language for application scale JavaScript development",
88
"keywords": [

src/compiler/corePublic.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ namespace ts {
33
// If changing the text in this section, be sure to test `configurePrerelease` too.
44
export const versionMajorMinor = "3.8";
55
/** The version of the TypeScript compiler release */
6-
export const version = `${versionMajorMinor}.2`;
6+
export const version = "3.8.3" as string;
77

88
/**
99
* Type of objects whose values are all of the same type.

0 commit comments

Comments
 (0)