-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathlaunch.json
More file actions
executable file
·83 lines (83 loc) · 2.57 KB
/
Copy pathlaunch.json
File metadata and controls
executable file
·83 lines (83 loc) · 2.57 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"version": "0.2.0",
"configurations": [
{
"name": "Debug bsc plugin tests",
"type": "node",
"request": "launch",
"program": "${workspaceFolder}/node_modules/mocha/bin/_mocha",
"sourceMaps": true,
"args": [
"--timeout",
"987654"
],
"skipFiles": [
"${workspaceFolder}/node_modules/**/*.js",
"<node_internals>/**/*.js"
],
"cwd": "${workspaceRoot}",
"internalConsoleOptions": "openOnSessionStart",
"resolveSourceMapLocations": [
"${workspaceFolder}/**",
"!**/node_modules/typescript/**"
]
},
{
"name": "Debug Roku Tests",
"type": "brightscript",
"request": "launch",
"preLaunchTask": "build-test-project",
"stopOnEntry": false,
"files": [
//all files from the test-project/dist folder
"**/*",
],
"rootDir": "${workspaceFolder}/test-project/dist",
"enableDebuggerAutoRecovery": true,
"stopDebuggerOnAppExit": true,
"injectRaleTrackerTask": false,
"enableDebugProtocol": true
},
{
"name": "Debug Rooibos CLI",
"type": "node",
"request": "launch",
"smartStep": false,
"sourceMaps": true,
"runtimeArgs": [
"--nolazy",
"-r",
"ts-node/register"
],
"args": [
"src/cli.ts",
"--project=./test-project/bsconfig.json",
"--host=${input:roku_host}",
"--password=${input:roku_password}"
],
"resolveSourceMapLocations": [
"${workspaceFolder}/**",
"!**/node_modules/typescript/**",
"!**/node_modules/vscode-languageserver/**"
],
"skipFiles": [
"<node_internals>/**/*.js"
],
"internalConsoleOptions": "openOnSessionStart"
}
],
"inputs": [
{
"id": "roku_host",
"type": "promptString",
"description": "Enter the IP address of your Roku device",
"default": ""
},
{
"id": "roku_password",
"type": "promptString",
"description": "Enter the password for your Roku device",
"default": ""
}
]
}