Skip to content

Commit 4b8b0c8

Browse files
authored
Fix post-LKG API baselines (microsoft#41973)
1 parent 0d8a868 commit 4b8b0c8

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/compiler/corePublic.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,10 @@ namespace ts {
22
// WARNING: The script `configurePrerelease.ts` uses a regexp to parse out these values.
33
// If changing the text in this section, be sure to test `configurePrerelease` too.
44
export const versionMajorMinor = "4.2";
5+
// The following is baselined as a literal template type without intervention
56
/** The version of the TypeScript compiler release */
6-
export const version = `${versionMajorMinor}.0-dev`;
7+
// eslint-disable-next-line @typescript-eslint/no-inferrable-types
8+
export const version: string = `${versionMajorMinor}.0-dev`;
79

810
/**
911
* Type of objects whose values are all of the same type.

0 commit comments

Comments
 (0)