From f143765085984798d48bf98fb343c172c7440af6 Mon Sep 17 00:00:00 2001 From: Wesley Wigham Date: Tue, 15 Dec 2020 11:40:23 -0800 Subject: [PATCH] Fix post-LKG API baselines --- src/compiler/corePublic.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/compiler/corePublic.ts b/src/compiler/corePublic.ts index 0f4d7f697497c..31c852bdee6d4 100644 --- a/src/compiler/corePublic.ts +++ b/src/compiler/corePublic.ts @@ -2,8 +2,10 @@ namespace ts { // WARNING: The script `configurePrerelease.ts` uses a regexp to parse out these values. // If changing the text in this section, be sure to test `configurePrerelease` too. export const versionMajorMinor = "4.2"; + // The following is baselined as a literal template type without intervention /** The version of the TypeScript compiler release */ - export const version = `${versionMajorMinor}.0-dev`; + // eslint-disable-next-line @typescript-eslint/no-inferrable-types + export const version: string = `${versionMajorMinor}.0-dev`; /** * Type of objects whose values are all of the same type.