forked from microsoft/vscode-jupyter-hub
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
jupyter.hub.code-workspace
50 lines (50 loc) · 1.84 KB
/
jupyter.hub.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
{
"folders": [
{
"path": ".",
"name": "vscode-jupyter-hub"
},
{
"name": "vscode-jupyter",
"path": "../vscode-jupyter"
}
],
"settings": {
"typescript.tsdk": "./node_modules/typescript/lib",
"search.exclude": {
"**/node_modules/**": true,
"**/.vscode test/insider/**": true,
"**/.vscode test/stable/**": true,
"**/.vscode-test/insider/**": true,
"**/.vscode-test/stable/**": true,
"**/out/**": true,
"**/dist/**": true
}
},
"launch": {
"configurations": [
// This configuration allows one to debug multiple extensions at a time.
// The assumption here is that vscode-notebook-renderers is in the same folder as the python extension.
// User is expected to start the compile tasks for both extensions before using this launch config.
{
"type": "extensionHost",
"request": "launch",
"name": "Jupyter + Hub Extension",
"args": [
"--enable-proposed-api",
"--extensionDevelopmentPath=${workspaceFolder:vscode-jupyter}",
"--extensionDevelopmentPath=${workspaceFolder:vscode-jupyter-hub}"
],
"sourceMaps": true,
"outFiles": [
"${workspaceFolder:vscode-jupyter}/out/**/*.js",
"!${workspaceFolder:vscode-jupyter}/**/node_modules**/*",
"${workspaceFolder:vscode-jupyter-hub}/dist/**/*.js",
"!${workspaceFolder:vscode-jupyter-hub}/**/node_modules**/*"
],
"skipFiles": ["<node_internals>/**"]
}
],
"compounds": []
}
}