-
Notifications
You must be signed in to change notification settings - Fork 34
New issue
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
Investigate tsx
#1169
Comments
The REPL is quite a different experience to ts-node in pasting code in and stuff. Try pasting in a multiline function: function x(a: { a: 1, b: 2 }): 2 {
return a.b;
}
edit: privatenumber/tsx#250 |
🥲 |
Would you normally paste in a command? I would think the normal usecase would be running a file |
In that case tsx would be fine as there's no REPL involved, right? I guess the question here is whether the REPL is actually used? |
Oh true I should read the issue better |
It looks like this has a REPL, which was the historical reason to stick with ts-node.
https://github.com/esbuild-kit/tsx
The text was updated successfully, but these errors were encountered: