We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0d8a868 commit 4b8b0c8Copy full SHA for 4b8b0c8
src/compiler/corePublic.ts
@@ -2,8 +2,10 @@ namespace ts {
2
// WARNING: The script `configurePrerelease.ts` uses a regexp to parse out these values.
3
// If changing the text in this section, be sure to test `configurePrerelease` too.
4
export const versionMajorMinor = "4.2";
5
+ // The following is baselined as a literal template type without intervention
6
/** The version of the TypeScript compiler release */
- export const version = `${versionMajorMinor}.0-dev`;
7
+ // eslint-disable-next-line @typescript-eslint/no-inferrable-types
8
+ export const version: string = `${versionMajorMinor}.0-dev`;
9
10
/**
11
* Type of objects whose values are all of the same type.
0 commit comments