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
Given the following tasks.json which finds all typescript errors in project
// tasks.json { "version": "2.0.0", "tasks": [ { "taskName": "tsc-watch", "type": "shell", "command": "./node_modules/.bin/tsc", "args": ["--noEmit", "-w", "-p", "."], "presentation": { "echo": true, "reveal": "silent", "focus": false, "panel": "shared" }, "group":{ "kind": "build", "isDefault": true }, "isBackground": true, "problemMatcher": "$tsc-watch" } ] }
an index.ts file:
// index.ts import related from './related'; console.log(related(1))
an related.ts file:
// related.ts export default function related(thing: number) { return thing }
Steps to reproduce.
thing: number
thing: string
The text was updated successfully, but these errors were encountered:
@cloudkite very good catch.
I fixed this for the next insider build.
Sorry, something went wrong.
0aba690
@dbaeumer Awesome thanks for that! looking forward to the next build 👍
dbaeumer
Successfully merging a pull request may close this issue.
Given the following tasks.json which finds all typescript errors in project
an index.ts file:
an related.ts file:
Steps to reproduce.
thing: number
tothing: string
= vscode correctly shows 1 errorThe text was updated successfully, but these errors were encountered: