Files
vscode-extension-samples/l10n-sample/.vscode/tasks.json
Tyler James Leonhardt 45531b256a Add l10n sample/Remove i18n sample (#721)
* add l10n extension sample, delete vscode-nls sample

* rev l10n versions

* fix a couple typos

* move around sections

* updates

* final

* include link to API
2022-11-04 12:47:49 -07:00

21 lines
366 B
JSON

// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
{
"version": "2.0.0",
"tasks": [
{
"type": "npm",
"script": "watch",
"problemMatcher": "$tsc-watch",
"isBackground": true,
"presentation": {
"reveal": "never"
},
"group": {
"kind": "build",
"isDefault": true
}
}
]
}