We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
lib
target
@tsconfig/nodexx
For example, in @tsconfig/node18
@tsconfig/node18
{ "$schema": "https://json.schemastore.org/tsconfig", "_version": "18.2.0", "compilerOptions": { "lib": ["es2023"], "module": "node16", "target": "es2022", "strict": true, "esModuleInterop": true, "skipLibCheck": true, "moduleResolution": "node16" } }
One is es2023 while the other is es2022. Why?
es2023
es2022
The text was updated successfully, but these errors were encountered:
target es2023 didn't exist until TS 5.5, released just yesterday.
Sorry, something went wrong.
Got it. Thanks!
No branches or pull requests
For example, in
@tsconfig/node18
One is
es2023
while the other ises2022
. Why?The text was updated successfully, but these errors were encountered: