forked from codeforboston/police-data-trust
-
Notifications
You must be signed in to change notification settings - Fork 0
/
police-data-trust.code-workspace
75 lines (75 loc) · 1.96 KB
/
police-data-trust.code-workspace
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
{
"folders": [
{
"path": "."
}
],
"settings": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"[python]": {
"editor.defaultFormatter": "ms-python.python"
},
"python.formatting.provider": "black",
"eslint.workingDirectories": ["./frontend"],
"githubPullRequests.remotes": ["upstream"],
"jupyter.notebookFileRoot": "${workspaceRoot}"
},
"extensions": {
"recommendations": [
"dbaeumer.vscode-eslint",
"esbenp.prettier-vscode",
"stkb.rewrap",
"GitHub.vscode-pull-request-github",
"eamodio.gitlens",
"ms-python.python",
"ms-python.vscode-pylance"
]
},
"launch": {
"configurations": [
{
"name": "Launch Frontend",
"request": "launch",
"type": "pwa-chrome",
"url": "http://localhost:3000/login",
"webRoot": "${workspaceFolder}/frontend",
"sourceMapPathOverrides": {
"webpack:///./~/*": "${workspaceFolder}/node_modules/*",
"webpack://?:*/*": "${workspaceFolder}/*"
}
},
{
"name": "Watch and Debug Jest Tests",
"type": "node",
"request": "launch",
"cwd": "${workspaceRoot}/frontend",
"runtimeArgs": [
"--inspect-brk",
"${workspaceRoot}/frontend/node_modules/.bin/jest",
"--runInBand",
"--watch"
],
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen",
"port": 9229
},
{
"name": "Debug Current Jest Test",
"type": "node",
"request": "launch",
"cwd": "${workspaceRoot}/frontend",
"runtimeArgs": [
"--inspect-brk",
"${workspaceRoot}/frontend/node_modules/.bin/jest",
"--runInBand",
"--watch",
"${file}"
],
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen",
"port": 9229
}
],
"compounds": []
}
}