SWC
SWC support is built-in via the --swc flag or "swc": true tsconfig option.
SWC is a TypeScript-compatible transpiler implemented in Rust. This makes it an order of magnitude faster than vanilla transpileOnly.
To use it, first install @swc/core or @swc/wasm. If using importHelpers, also install @swc/helpers. If target is less than "es2015" and using async/await or generator functions, also install regenerator-runtime.
shellnpm i -D @swc/core @swc/helpers regenerator-runtime
shellnpm i -D @swc/core @swc/helpers regenerator-runtime
Then add the following to your tsconfig.json.
tsconfig.jsonjson{"ts-node": {"swc": true}}
tsconfig.jsonjson{"ts-node": {"swc": true}}
SWC uses
@swc/helpersinstead oftslib. If you have enabledimportHelpers, you must also install@swc/helpers.