microsoft/vscode-languagedetection

Public

mirrored fromhttps://github.com/microsoft/vscode-languagedetectionAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
d9c01ba7f55ea6994ee3edc9e5d98c4b11bbd24a

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

.vscode/tasks.json

15lines · modecode

1{
2 "version": "2.0.0",
3 "tasks": [
4 {
5 "type": "typescript",
6 "tsconfig": "tsconfig.json",
7 "option": "watch",
8 "problemMatcher": [
9 "$tsc-watch"
10 ],
11 "group": "build",
12 "label": "tsc: watch - tsconfig.json"
13 }
14 ]
15}
16