snowflake-promise/.vscode/launch.json
2017-09-10 19:53:33 -07:00

29 lines
846 B
JSON

{
// Use IntelliSense to find out which attributes exist for node debugging
// Use hover for the description of the existing attributes
// For further information visit https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Launch Program",
"type": "node",
"request": "launch",
"program": "${workspaceRoot}/src/app.ts",
"cwd": "${workspaceRoot}",
"outFiles": [ "${workspaceRoot}/prod/**/*.js" ],
"sourceMaps": true,
"preLaunchTask": "build"
},
{
"name": "Launch test.ts",
"type": "node",
"request": "launch",
"program": "${workspaceRoot}/src/test.ts",
"cwd": "${workspaceRoot}",
"outFiles": [ "${workspaceRoot}/prod/**/*.js" ],
"sourceMaps": true,
"preLaunchTask": "build"
}
]
}