I have the following tsconfig
configuration:
{
"include": ["tests/**/*.ts"],
"exclude": [],
"compilerOptions": {
"composite": true,
"lib": [],
"skipLibCheck": true,
"outDir": "lib",
"types": ["vitest/globals"]
}
}
As I have defined types for vitest/globals so yarn vitest
cmd is working fine and executing the tests cases as well.
But in VS Code its showing me the following error:
How I can fix or silence this issue in vs-code?