Merge pull request #32461 from orta/script_target_value_

Set the ScriptTarget of ESNext to be 99 so it doesn't change between releases
This commit is contained in:
Orta 2019-07-18 12:17:03 -04:00 committed by GitHub
commit 97b5671f99
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 9 additions and 9 deletions

View file

@ -4760,7 +4760,7 @@ namespace ts {
UMD = 3,
System = 4,
ES2015 = 5,
ESNext = 6
ESNext = 99
}
export const enum JsxEmit {
@ -4808,7 +4808,7 @@ namespace ts {
ES2018 = 5,
ES2019 = 6,
ES2020 = 7,
ESNext = 8,
ESNext = 99,
JSON = 100,
Latest = ESNext,
}

View file

@ -2600,7 +2600,7 @@ declare namespace ts {
UMD = 3,
System = 4,
ES2015 = 5,
ESNext = 6
ESNext = 99
}
enum JsxEmit {
None = 0,
@ -2640,9 +2640,9 @@ declare namespace ts {
ES2018 = 5,
ES2019 = 6,
ES2020 = 7,
ESNext = 8,
ESNext = 99,
JSON = 100,
Latest = 8
Latest = 99
}
enum LanguageVariant {
Standard = 0,

View file

@ -2600,7 +2600,7 @@ declare namespace ts {
UMD = 3,
System = 4,
ES2015 = 5,
ESNext = 6
ESNext = 99
}
enum JsxEmit {
None = 0,
@ -2640,9 +2640,9 @@ declare namespace ts {
ES2018 = 5,
ES2019 = 6,
ES2020 = 7,
ESNext = 8,
ESNext = 99,
JSON = 100,
Latest = 8
Latest = 99
}
enum LanguageVariant {
Standard = 0,

View file

@ -70,7 +70,7 @@ export function multiply(a, b) { return a * b; }
"incremental": true,
"listFiles": true,
"listEmittedFiles": true,
"target": 8,
"target": 99,
"configFilePath": "./tsconfig.json"
},
"referencedMap": {},