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
Hi, i'd like to use esbuild to transform some typescript code to be run as node worker.
In the read me it says that it can be used to transform Typescript to Javascript or newer Js to an older one.
when i run the transform service on this file, it just remove the annotations if there is any:
import test from './worker' test('simple', (a) => { a.equal(1, 0, 'not equal') }) test('async', async (a) => { await new Promise((r) => { setTimeout(() => { a.equal(1, 1, 'not equal') r() }, 1000) }) }) test('simple 2', (a) => { a.equal(1, 1, 'not equal') })
is it related to issue #109 ?
The text was updated successfully, but these errors were encountered:
Yes this seems like a duplicate of #109 to me.
Sorry, something went wrong.
No branches or pull requests
Hi, i'd like to use esbuild to transform some typescript code to be run as node worker.
In the read me it says that it can be used to transform Typescript to Javascript or newer Js to an older one.
when i run the transform service on this file, it just remove the annotations if there is any:
is it related to issue #109 ?
The text was updated successfully, but these errors were encountered: