UNPKG

469 BJSONView Raw
1{
2 "configurations": [
3 {
4 "type": "node",
5 "request": "launch",
6 "name": "Run AVA test",
7 "program": "${workspaceRoot}/node_modules/ava/profile.js",
8 "cwd": "${workspaceRoot}",
9 "args": ["dist/index.test.js"],
10 "preLaunchTask": "tsc: build - tsconfig.json",
11 "outFiles": ["${workspaceFolder}/dist/**/*.js"]
12 },
13 {
14 "name": "Attach",
15 "type": "node",
16 "request": "attach",
17 "port": 5858
18 }
19 ]
20}