Skip to content

Commit f80b69c

Browse files
committed
Install essential markdown-it plugins & webpack
1 parent c8e6d28 commit f80b69c

8 files changed

Lines changed: 4223 additions & 435 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@ out
22
node_modules
33
.vscode-test/
44
*.vsix
5+
dist

.vscode/launch.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@
1111
"request": "launch",
1212
"runtimeExecutable": "${execPath}",
1313
"args": [
14-
"--extensionDevelopmentPath=${workspaceFolder}"
14+
"--extensionDevelopmentPath=${workspaceFolder}",
15+
"${workspaceFolder}"
1516
],
1617
"outFiles": [
1718
"${workspaceFolder}/out/**/*.js"
18-
],
19-
"preLaunchTask": "npm: watch"
19+
]
2020
},
2121
{
2222
"name": "Extension Tests",
@@ -25,12 +25,12 @@
2525
"runtimeExecutable": "${execPath}",
2626
"args": [
2727
"--extensionDevelopmentPath=${workspaceFolder}",
28-
"--extensionTestsPath=${workspaceFolder}/out/test/suite/index"
28+
"--extensionTestsPath=${workspaceFolder}/out/test"
2929
],
3030
"outFiles": [
3131
"${workspaceFolder}/out/test/**/*.js"
3232
],
3333
"preLaunchTask": "npm: watch"
34-
}
34+
}
3535
]
3636
}

.vscodeignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,5 @@ vsc-extension-quickstart.md
77
**/tsconfig.json
88
**/tslint.json
99
**/*.map
10-
**/*.ts
10+
**/*.ts
11+
webpack.config.js

0 commit comments

Comments
 (0)