We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
TypeScript Version: 3.6.0
Search Terms: vscode, tasks.json, tasks, identifier
Code ./.vscode > tasks.json contains deprecated API tasks.identifier.
./.vscode
tasks.json
tasks.identifier
"tasks": [ { "type": "shell", "identifier": "local", // deprecated "label": "gulp: local", "command": "gulp", "args": ["local"], "group": { "kind": "build", "isDefault": true }, "problemMatcher": ["$gulp-tsc"] },
Note: tasks.identifier in tasks.json was introduced: 41567b2 - Migrate tscWatchMode to vfs
Expected behavior:
tasks.identifier should not be present in tasks.json
Reference: microsoft/vscode#57946 Further discussion see thread containing: microsoft/vscode#57707 (comment) Schema for tasks.json: https://code.visualstudio.com/docs/editor/tasks-appendix
Actual behavior: VSCode shows a warning for the identifier field
identifier
Suggested solution
Either:
or
.gitignore
TypeScript/.gitignore
Line 62 in 90afd6d
TaskDefinitions
package.json
Playground Link: Not applicable
Related Issues: None found
The text was updated successfully, but these errors were encountered:
This is an old issue, but this was fixed in #35282.
Sorry, something went wrong.
No branches or pull requests
TypeScript Version: 3.6.0
Search Terms:
vscode, tasks.json, tasks, identifier
Code
./.vscode
>tasks.json
contains deprecated APItasks.identifier
.Note:
tasks.identifier
intasks.json
was introduced: 41567b2 - Migrate tscWatchMode to vfsExpected behavior:
tasks.identifier
should not be present intasks.json
Reference: microsoft/vscode#57946
Further discussion see thread containing: microsoft/vscode#57707 (comment)
Schema for tasks.json: https://code.visualstudio.com/docs/editor/tasks-appendix
Actual behavior:
VSCode shows a warning for the
identifier
fieldSuggested solution
Either:
or
./.vscode
>tasks.json
if configured tasks no longer needed.gitignore
reference:TypeScript/.gitignore
Line 62 in 90afd6d
or
tasks.identifier
to update tasks API to new supported feature:TaskDefinitions
inpackage.json
: https://code.visualstudio.com/api/references/contribution-points#contributes.taskDefinitionsPlayground Link:
Not applicable
Related Issues:
None found
The text was updated successfully, but these errors were encountered: