Skip to content
This repository was archived by the owner on Oct 16, 2020. It is now read-only.

Commit 5a10ad3

Browse files
committed
fix: Lint fix
1 parent e0addb0 commit 5a10ad3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/project-manager.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -880,7 +880,7 @@ export class ProjectConfiguration {
880880
private isExpectedDeclarationFile(fileName: string) {
881881
if (isDeclarationFile(fileName)) {
882882
return this.expectedFilePaths.has(toUnixPath(fileName)) ||
883-
this.typeRoots.some(root => fileName.startsWith(root))
883+
this.typeRoots.some(root => fileName.startsWith(root));
884884
} else {
885885
return false;
886886
}

0 commit comments

Comments
 (0)