Show HN: TTSC – TypeScript-Go compiler and runner with transform plugins
github.com
Show HN: TTSC – TypeScript-Go compiler and runner with transform plugins
1–9 of 9 posts
Re: Show HN: TTSC – TypeScript-Go compiler and runner with transform plugins
#2Re: Show HN: TTSC – TypeScript-Go compiler and runner with transform plugins
#3How does it compare with oxlint?
So when using `oxlint`, you have to run it after TS compilation, but `@ttsc/lint` configured violations are detected when TS compilation.
Re: Show HN: TTSC – TypeScript-Go compiler and runner with transform plugins
#4Re: Show HN: TTSC – TypeScript-Go compiler and runner with transform plugins
#5With current Node.js, you can run TypeScript directly without ttsc.
Re: Show HN: TTSC – TypeScript-Go compiler and runner with transform plugins
#6With current Node.js, you can run TypeScript directly without ttsc.
But it does not support plugin, and does not type checking either.
Do you ever really want to check types at runtime? If anything, you just want it to somehow work, right? Like Python.
Re: Show HN: TTSC – TypeScript-Go compiler and runner with transform plugins
#7Earlier quoted context omitted.
But it does not support plugin, and does not type checking either.
If you want type checking, there’s tsc. Do you ever really want to check types at runtime? If anything, you just want it to somehow work, right? Like Python.
Re: Show HN: TTSC – TypeScript-Go compiler and runner with transform plugins
#8Earlier quoted context omitted.
If you want type checking, there’s tsc. Do you ever really want to check types at runtime? If anything, you just want it to somehow work, right? Like Python.
I'm making `typia`, and it needs the type checking even in the convenient runtime like `ts-node`.