TypeScript Version: 3.3.0-dev.20181204
Search Terms: checkjs allowjs breaks intellisense code completion
Code
Without checkJs turned on

With checkJs turned on

Expected behavior: With or without checkJs being on, intellisense should otherwise be able to infer the same code types for completion, even if a module being required doesn't have a typings file or module definition.
Actual behavior:
All intellisense / code completion is completely lost when checkJs is turned on but a required module doesn't have declarations.
After trying to find some guidance on the Gitter, I was told to lodge this here. By "checkJs" turned on, I mean here is my .tsconfig:
{
"compilerOptions": {
"outDir": "./built",
"allowJs": true,
"target": "es2018",
"checkJs": true,
"module": "commonjs",
"esModuleInterop": true,
"allowSyntheticDefaultImports": true
}
}
TypeScript Version: 3.3.0-dev.20181204
Search Terms: checkjs allowjs breaks intellisense code completion
Code
Without
checkJsturned onWith
checkJsturned onExpected behavior: With or without
checkJsbeing on, intellisense should otherwise be able to infer the same code types for completion, even if a module being required doesn't have a typings file or module definition.Actual behavior:
All intellisense / code completion is completely lost when
checkJsis turned on but a required module doesn't have declarations.After trying to find some guidance on the Gitter, I was told to lodge this here. By "
checkJs" turned on, I mean here is my.tsconfig:{ "compilerOptions": { "outDir": "./built", "allowJs": true, "target": "es2018", "checkJs": true, "module": "commonjs", "esModuleInterop": true, "allowSyntheticDefaultImports": true } }