forked from deephaven/web-client-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.json
55 lines (55 loc) · 1.34 KB
/
settings.json
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
{
"typescript.tsdk": "node_modules/typescript/lib",
"editor.formatOnSave": true,
"editor.tabSize": 2,
"eslint.workingDirectories": [
{
"mode": "auto"
}
],
"editor.defaultFormatter": "esbenp.prettier-vscode",
"stylelint.validate": ["css", "html", "sass", "scss"],
"launch": {
"version": "0.2.0",
"configurations": [
{
"name": "Launch Deephaven",
"request": "launch",
"type": "chrome",
"url": "http://localhost:4000",
"webRoot": "${workspaceFolder}",
"userDataDir": "${workspaceFolder}/.vscode/chrome-debug-profile"
},
{
"type": "node",
"request": "attach",
"name": "Attach to Node Process",
"port": 9229
},
{
"name": "Debug Jest Tests",
"type": "node",
"request": "launch",
"runtimeArgs": [
"--inspect-brk",
"${workspaceRoot}/node_modules/.bin/jest",
"--config",
"jest.config.unit.cjs",
"--runInBand",
"--watch",
"${input:pickFile}"
],
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen"
}
],
"compounds": [],
"inputs": [
{
"id": "pickFile",
"type": "promptString",
"description": "Test pattern or filename"
}
]
}
}