forked from jae-jae/Userscript-Plus
-
-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathlaunch.json
More file actions
52 lines (52 loc) · 1.12 KB
/
Copy pathlaunch.json
File metadata and controls
52 lines (52 loc) · 1.12 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
{
"version": "0.2.0",
"compounds": [
{
"name": "Attach/Launch",
"configurations": ["SF", "Attach:Firefox"]
}
],
"configurations": [
{
"name": "Attach:Firefox",
"type": "firefox",
"request": "attach",
},
{
"name": "SF",
"type": "firefox",
"request": "launch",
"profile": "UserJS",
"clearConsoleOnReload": true,
"reAttach": true,
"reloadOnAttach": true,
"keepProfileChanges": false,
"url": "https://www.google.com/",
"addonPath": "${workspaceFolder}/build/firefox",
"reloadOnChange": {
"watch": [
"${workspaceFolder}/src/**"
],
"ignore": [
"${workspaceFolder}/node_modules/**"
]
},
"pathMappings": [
{
"url": "webpack:///js",
"path": "${workspaceFolder}/src/js"
},
{
"url": "webpack:///src/",
"path": "${webRoot}/src/"
}
],
"log": {
"fileName": "${workspaceFolder}/log.txt",
"fileLevel": {
"default": "Debug"
}
}
}
]
}