From @KSXGitHub on April 23, 2018 10:13
- VSCode Version: 1.22.2
- OS Version: Arch Linux
Steps to Reproduce
- Create
tsconfig.json
{
"compilerOptions": {
"target": "es2017",
"module": "commonjs",
"lib": ["es2017"]
}
}
- Create 2 files:
.dotfile.ts (begin with a dot) and normalfile.ts
Expected behavior
There should be no problem
Actual behavior
In .dotfile.ts, linter marks entries word with message [ts] Property 'entries' does not exist on type 'ObjectConstructor'.
Things are okay in normalfile.ts
Screenshot

Copied from original issue: microsoft/vscode#48385