Allow tsc tasks to be disabled using settings. Fixes #27312

This commit is contained in:
Matt Bierner
2017-05-26 14:24:15 -07:00
parent 5a83b55b70
commit c9a2a5be88
4 changed files with 52 additions and 4 deletions

View File

@@ -315,6 +315,15 @@
"type": "boolean",
"default": true,
"description": "%javascript.nameSuggestions%"
},
"typescript.tsc.autoDetect": {
"type": "string",
"default": "on",
"enum": [
"on",
"off"
],
"description": "%typescript.tsc.autoDetect%"
}
}
},