-
-
Notifications
You must be signed in to change notification settings - Fork 6.2k
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
Add TypeScript plugin #245
Comments
Using tsc in Vite doesn't make sense, the whole point is to throw it away.
|
I want to use tsc to transpile TypeScript without type checking. This proposal using tsc only for new syntax, for example: nominal I'm using tsc with noEmit to type check . |
There is plan for esbuild to support decorators: evanw/esbuild#104 (comment) If you really need it you can write your own plugin. |
would be nice to use tsc, this enables to specify options like JSX factory injection in the tsconfig.json for example using emotion.js in react the tsconfig.json requires:
|
Is your feature request related to a problem? Please describe.
We may need use new/experiment TypeScript version such as microsoft/TypeScript#33038 (comment) . Also we may need to use decorator. So we should support use tsc as compiler.
Describe the solution you'd like
Add a plugin to use tsc rather than esbuild
Describe alternatives you've considered
Additional context
The text was updated successfully, but these errors were encountered: