UNPKG

772 BJSONView Raw
1{
2 // Use IntelliSense to learn about possible attributes.
3 // Hover to view descriptions of existing attributes.
4 // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5 "version": "0.2.0",
6 "configurations": [
7
8 {
9 "type": "node",
10 "request": "launch",
11 "name": "Yarn test",
12 "program": "${workspaceRoot}/node_modules/.bin/mocha",
13 "args": [
14 "--recursive", "./*spec.js", "./typescript/*spec.js",
15 ],
16 "internalConsoleOptions": "openOnSessionStart"
17 },
18 {
19 "type": "node",
20 "request": "launch",
21 "name": "Yarn docs",
22 "program": "${workspaceRoot}/node_modules/.bin/jsdoc",
23 "args": [
24 "-c", "jsdoc.json",
25 ],
26 "internalConsoleOptions": "openOnSessionStart"
27}
28 ]
29}
\No newline at end of file