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
VsCode will only report typescript problems when files with the problems are open even though there is a tsconfig.json file.
Steps to Reproduce:
tsconfig.json contents
{ "compilerOptions": { "target": "es6", "module": "commonjs", "sourceMap": true, "rootDir": "./" }, "include": [ "**/*.ts" ] }
test1.ts contents
export class test { public static test123(): number { console.log('Hello World'); return 0; } }
index.ts contents
import { test } from "./test"; test.main();
Reproduces without extensions: Yes
In the gif, the tsconfig.json has the 'files' option, but I can confirm that it is still happening when using the 'include' option
The text was updated successfully, but these errors were encountered:
duplicate of #13953
Sorry, something went wrong.
mjbvz
No branches or pull requests
VsCode will only report typescript problems when files with the problems are open even though there is a tsconfig.json file.
Steps to Reproduce:
tsconfig.json contents
test1.ts contents
index.ts contents
Reproduces without extensions: Yes
In the gif, the tsconfig.json has the 'files' option, but I can confirm that it is still happening when using the 'include' option
The text was updated successfully, but these errors were encountered: