Skip to content

Instantly share code, notes, and snippets.

View paustint's full-sized avatar
🏠
Working from home

Austin Turner paustint

🏠
Working from home
View GitHub Profile
@paustint
paustint / launch.json
Created September 30, 2020 19:11 — 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"],