Merge branch '21-configure-local-code-editing-for-vs-code' into 'master'

Resolve "Configure local code editing for VS Code"

Closes #21

See merge request fastexitlane/latex-boilerplate!11
This commit is contained in:
Dominik Becker 2019-05-23 15:36:18 +00:00
commit c00f01d3bb

22
.vscode/tasks.json vendored Normal file
View File

@ -0,0 +1,22 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "latexmk",
"type": "shell",
"command": "latexmk -latexoption=\"-shell-escape\" main.tex",
"group": {
"kind": "build",
"isDefault": true
},
"dependsOn": "clean"
},
{
"label": "clean",
"type": "shell",
"command": "latexmk -C"
}
]
}