Skip to content

Commit

Permalink
chore: launch.json
Browse files Browse the repository at this point in the history
  • Loading branch information
cdimascio committed Dec 25, 2020
1 parent 1d3dcee commit 3347f5d
Showing 1 changed file with 44 additions and 0 deletions.
44 changes: 44 additions & 0 deletions launch.json
@@ -0,0 +1,44 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [

{
"name": "Attach",
"port": 9229,
"request": "attach",
"skipFiles": ["<node_internals>/**"],
"type": "pwa-node"
},
{
"name": "Fastify Attach",
"port": 9320,
"request": "attach",
"skipFiles": ["<node_internals>/**"],
"type": "pwa-node"
},
{
"type": "node",
"request": "launch",
"name": "Mocha All",
"runtimeExecutable": "/Users/cdimasci/.nvm/versions/node/v15.1.0/bin/node",
"program": "${workspaceFolder}/node_modules/mocha/bin/_mocha",
"args": [
"-r",
"source-map-support/register",
"-r",
"ts-node/register",
"--timeout",
"999999",
"--colors",
"${workspaceFolder}/test/**/*.spec.ts"
],
"env": { "TS_NODE_FILES": "true" },
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen",
"protocol": "inspector"
}
]
}

0 comments on commit 3347f5d

Please sign in to comment.