Skip to content

Commit 01b5d0b

Browse files
committed
Added vscode launch for docs
1 parent c5fdc0a commit 01b5d0b

4 files changed

Lines changed: 35 additions & 0 deletions

File tree

.vscode/extensions.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"recommendations": [
3+
]
4+
}

.vscode/launch.json

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
// Use IntelliSense to learn about possible attributes.
3+
// Hover to view descriptions of existing attributes.
4+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+
"version": "0.2.0",
6+
"configurations": [
7+
{
8+
"name": "Run: Docs",
9+
"preLaunchTask": "npm_install_docs",
10+
"cwd": "${workspaceFolder}/docs",
11+
"command": "npm run docfx",
12+
"request": "launch",
13+
"type": "node-terminal"
14+
}
15+
],
16+
"compounds": []
17+
}

.vscode/settings.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
{
2+
}

.vscode/tasks.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"version": "2.0.0",
3+
"tasks": [
4+
{
5+
"label": "npm_install_docs",
6+
"type": "npm",
7+
"script": "install",
8+
"path": "docs/",
9+
"problemMatcher": [],
10+
}
11+
]
12+
}

0 commit comments

Comments
 (0)