add new typescript.tsc.autoDetectType to enable either detection of build or watch tasks

Fixes #35067
This commit is contained in:
Matt Bierner
2017-10-11 18:27:45 -07:00
parent b811aa6c40
commit a60a551582
3 changed files with 67 additions and 28 deletions

View File

@@ -390,6 +390,17 @@
],
"description": "%typescript.tsc.autoDetect%",
"scope": "resource"
},
"typescript.tsc.autoDetectType": {
"type": "string",
"default": "both",
"enum": [
"both",
"build",
"watch"
],
"description": "%typescript.tsc.autoDetectType%",
"scope": "resource"
}
}
},