proxy-observable
Version:
ES6 Proxy observable implementation
36 lines • 853 B
JSON
{
// Use IntelliSense to learn about possible Node.js debug attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Launch Program",
"program": "${file}"
},
{
"name": "Debug Mocha",
"type": "node",
"request": "launch",
"cwd": "${workspaceRoot}",
"program": "${workspaceRoot}/node_modules/mocha/bin/_mocha",
"stopOnEntry": false,
"args": [
"${file}",
"--require",
"babel-register",
"-u",
"tdd",
"--timeout",
"999999",
"--colors"
],
"runtimeArgs": [
"--nolazy"
],
"sourceMaps": true
}
]
}