🔎 Search Terms
es2025
jsconfig.json
tsconfig.json
json schema
json-ld
target es2025
🕗 Version & Regression Information
I was unable to test this on prior versions because this affects only the schema definition, not the tsc. So the issue is technically versionless.
Playground link below can be used to prove tsc is not affected.
⏯ Playground Link
https://www.typescriptlang.org/play/?moduleResolution=99&target=12&jsx=0&module=199&pretty=true&ts=6.0.2&filetype=js#code/PQKhCgAIUgBAXAngBwKYBNUDNIG8BKq8ArgE4B2AKiqgDxJoD2OAIgIbyoB05jA7gD4AvpEoBLALaoAzvDYTkUEMHDhQEaHFJEy5aXnFTZ85EKUrUAD2SNS8SFmLkAxvDGNykAOZFDqABQAlLhQkGHaJBSQ7Jw8-EFc8IwAyvCkYuReQeBm4EA
💻 Code
//jsconfig.json
{
"include": [
"src/js/**/*"
],
"compilerOptions": {
"target":"es2025"
}
}
🙁 Actual behavior
"target" does not accept "es2025" as a value.
🙂 Expected behavior
"target" accepting "es2025" as a value.
Additional information about the issue
I will dig deeper after work hours to make a PR.
🔎 Search Terms
es2025
jsconfig.json
tsconfig.json
json schema
json-ld
target es2025
🕗 Version & Regression Information
I was unable to test this on prior versions because this affects only the schema definition, not the
tsc. So the issue is technically versionless.Playground link below can be used to prove tsc is not affected.
⏯ Playground Link
https://www.typescriptlang.org/play/?moduleResolution=99&target=12&jsx=0&module=199&pretty=true&ts=6.0.2&filetype=js#code/PQKhCgAIUgBAXAngBwKYBNUDNIG8BKq8ArgE4B2AKiqgDxJoD2OAIgIbyoB05jA7gD4AvpEoBLALaoAzvDYTkUEMHDhQEaHFJEy5aXnFTZ85EKUrUAD2SNS8SFmLkAxvDGNykAOZFDqABQAlLhQkGHaJBSQ7Jw8-EFc8IwAyvCkYuReQeBm4EA
💻 Code
//jsconfig.json{ "include": [ "src/js/**/*" ], "compilerOptions": { "target":"es2025" } }🙁 Actual behavior
"target" does not accept "es2025" as a value.
🙂 Expected behavior
"target" accepting "es2025" as a value.
Additional information about the issue
I will dig deeper after work hours to make a PR.