Skip to content

Instantly share code, notes, and snippets.

View rutexd's full-sized avatar

rutexd

  • 20:39 (UTC +02:00)
View GitHub Profile
@rutexd
rutexd / launch.json
Created March 1, 2023 02:05 — forked from cecilemuller/launch.json
Run ts-node in VSCode Debugger
{
"version": "0.2.0",
"configurations": [
{
"name": "Example",
"type": "node",
"request": "launch",
"runtimeExecutable": "node",
"runtimeArgs": ["--nolazy", "-r", "ts-node/register/transpile-only"],