We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3378f5c commit e630ab1Copy full SHA for e630ab1
src/server/session.ts
@@ -31,7 +31,8 @@ namespace ts.server {
31
}
32
else {
33
// For configured projects, require that skipLibCheck be set also
34
- return project.getCompilerOptions().skipLibCheck && project.isJsOnlyProject();
+ const options = project.getCompilerOptions();
35
+ return options.skipLibCheck && !options.checkJs && project.isJsOnlyProject();
36
37
38
0 commit comments