@dorbiren/blue_bird_ts

This setup compiles Typescript to ESM for the Node.js runtime. It's super-fast. it uses *`swc`* for the actual compiling. *`tsc`* is used for type checking only. nodemon allows us to re-compile and run from dist with every change during developme


Keywords
typescript, nodemon, swc, esm, node.js
License
ISC
Install
npm install @dorbiren/blue_bird_ts@1.0.8

Documentation

Node.js TS

SWC starter kit

This setup compiles Typescript to ESM for the Node.js runtime.
It's super-fast.
it uses swc for the actual compiling. tsc is used for type checking only. nodemon allows us to re-compile and run from dist with every change during development.

It is indeed experimental and can change at any time.
Be sure to use .js extension name at the end of your import statements of your own source files.

You can tell VSCode to add .js extentions for you on auto-imports...
Simply open the command pallete Cmd + Shift + P, then type >open settings json
and add these two lines at the root level of the configuration object:

"javascript.preferences.importModuleSpecifierEnding": "js"
"typescript.preferences.importModuleSpecifierEnding": "js"

An easier alternative you may consider is to simply dompile everything to CommonJS.

This setup is only relevant if it is important for you to be standard complient with ESNext and specifically with EcmaScript Modules (ESM) running natively in the Node.js runtime.