Skip to content

Instantly share code, notes, and snippets.

@chadstewart
Forked from Hacksore/HOW.md
Created September 30, 2023 01:56
Show Gist options
  • Select an option

  • Save chadstewart/bc2ec334503d0531d5b334c66a0ef046 to your computer and use it in GitHub Desktop.

Select an option

Save chadstewart/bc2ec334503d0531d5b334c66a0ef046 to your computer and use it in GitHub Desktop.
Run tsx in VSCode Debugger
{
  "version": "0.2.0",
  "configurations": [
    {
      "name": "Run tsx in VSCode Debugger",
      "type": "node",
      "request": "launch",
      "runtimeExecutable": "node",
      "runtimeArgs": ["--loader", "tsx"],
      "args": ["index.ts"],
      "cwd": "${workspaceRoot}",
      "internalConsoleOptions": "openOnSessionStart",
      "skipFiles": ["<node_internals>/**", "node_modules/**"]
    }
  ]
}

maybe i add repo later...

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment