Git Product home page Git Product logo

Comments (2)

evanw avatar evanw commented on June 5, 2024

You are misunderstanding the docs. This behavior is intended. Passing esnext means "preserve all upcoming JavaScript features without transformation" which is what esbuild is doing. This is also what other JavaScript transformers do, such as the TypeScript compiler (compare your code with ES2022 vs. with ESNext).

Another way to think about it is that esnext means "I'm running my code in an environment that supports all upcoming JavaScript features, so no transformations are needed" whereas es2022 means "I'm running my code in an environment that only supports JavaScript features up to the 2022 specification, so transform features newer than that".

according to the target docs, using esnext as target should correctly transform the using keyword.

The documentation you linked to is saying the opposite:

Syntax transform Transformed when --target is below Example
using declarations esnext using x = y

"Transformed when --target is below" means that using is not transformed when the target is equal to esnext, only when it is below esnext. The target order is es6, es2016, es2017, es2018, ... esnext (you can think of "next" like "infinity" if that helps). So "below" means anything that comes before esnext in that order.

from esbuild.

dreamorosi avatar dreamorosi commented on June 5, 2024

Alright, my bad.

Thank you for explaining and for the patience.

I'll close the issue.

from esbuild.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.