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:
commit
c00f01d3bb
22
.vscode/tasks.json
vendored
Normal file
22
.vscode/tasks.json
vendored
Normal 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"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user