Set up Node.js [ Typescript, Docker, VS Code debugger ] development environment

npm i --save-dev esbuild esbuild-node-tsc typescript nodemon @types/node

TSpilationāš”

tsconfig.json

etscĀ command is a command for esbuild-node-tsc. It usesĀ esbuildĀ as the main bundler and sets a default esbuild config for Node.js & TS setup using the previously configured tsconfig.json. More on how it works you can find atĀ esbuild-node-tscĀ github. This is completely up to you which build tool you want to use, for the sake of simplicity I have choosen theĀ etscĀ but you can use Webpack, plain esbuild, or whatever fits your needs and preferences the best. Just donā€™t forget to set your tool to generate source maps as those are going to be crucial for the debugger that we are going to set later.

Directory structure after running npm run build command

Perpetuum mobilešŸ”

Dockerize it! šŸ³

Dockerfile and .dockerignore
docker-compose.yml

DisinsectionšŸ›šŸ”

launch.json
VS Code debugger stopped on breakpoint

One more note: If you are using WSL, keep in mind that you want your VS Code to be up and running in remote WSL environment when starting a Debugger.

Nikola Nedeljkovic, Software Engineer