You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// 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}}]}
Add the following setting to the settings.json
// Turn off tsc task auto detection since we have the necessary task as npm scripts"typescript.tsc.autoDetect": "off"
Ensure the right pre launch task in launch.json. It should be
"preLaunchTask": "npm: watch"
Package.json DOES NOT contain a watch script
Ensure the right pre launch task in launch.json. It should be
"preLaunchTask": "tsc: watch - tsconfig.json"
@Microsoft/vscode please check if you own an example and follow the steps above if an update is necessary and check yourself off the list. If you have questions please ping me.
We should ensure that all samples provided under https://github.com/Microsoft/vscode-extension-samples us task version 2.0.0. Here is a small recipe how to convert a task 1.0 sample to a task 2.0.0 sample.
Package.json contains a watch script
Replace the content of the tasks.json with
Add the following setting to the settings.json
Ensure the right pre launch task in launch.json. It should be
Package.json DOES NOT contain a watch script
Ensure the right pre launch task in launch.json. It should be
@Microsoft/vscode please check if you own an example and follow the steps above if an update is necessary and check yourself off the list. If you have questions please ping me.
The text was updated successfully, but these errors were encountered: