Skip to content
This repository has been archived by the owner on Oct 10, 2018. It is now read-only.

Commit

Permalink
fix(imports): tsx files are watched as well to index them
Browse files Browse the repository at this point in the history
Fixes #255
  • Loading branch information
buehler authored Jul 16, 2017
1 parent 8eb626b commit 63286dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/extension/extensions/ImportResolveExtension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ export class ImportResolveExtension extends BaseExtension {
private statusBarItem: StatusBarItem = window.createStatusBarItem(StatusBarAlignment.Left, 4);
private ignorePatterns: string[];
private fileWatcher: FileSystemWatcher = workspace.createFileSystemWatcher(
'{**/*.ts,**/package.json,**/typings.json}',
'{**/*.ts,**/*.tsx,**/package.json,**/typings.json}',
);

constructor(
Expand Down

0 comments on commit 63286dc

Please sign in to comment.