-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathtensorboard.code-workspace
More file actions
49 lines (49 loc) · 1.8 KB
/
Copy pathtensorboard.code-workspace
File metadata and controls
49 lines (49 loc) · 1.8 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
{
"folders": [
{
"path": ".",
"name": "vscode-tensorboard"
},
{
"name": "vscode-python",
"path": "../vscode-python"
}
],
"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": "Python + Tensorboard Extension",
"args": [
"--extensionDevelopmentPath=${workspaceFolder:vscode-python}",
"--extensionDevelopmentPath=${workspaceFolder:vscode-tensorboard}"
],
"sourceMaps": true,
"outFiles": [
"${workspaceFolder:vscode-python}/out/**/*.js",
"!${workspaceFolder:vscode-python}/**/node_modules**/*",
"${workspaceFolder:vscode-tensorboard}/dist/**/*.js",
"!${workspaceFolder:vscode-tensorboard}/**/node_modules**/*"
],
"skipFiles": ["<node_internals>/**"]
}
],
"compounds": []
}
}