Set the ScriptTarget of ESNext to be 99 so it doesn't change between releases

This commit is contained in:
Orta Therox 2019-07-17 18:27:29 -04:00
parent a24e4b0d2c
commit 5f6cdf17ea

View file

@ -4808,7 +4808,7 @@ namespace ts {
ES2018 = 5,
ES2019 = 6,
ES2020 = 7,
ESNext = 8,
ESNext = 99,
JSON = 100,
Latest = ESNext,
}