Skip to content

Commit

Permalink
Fixed finding ts source files in path.js
Browse files Browse the repository at this point in the history
Gulp watch didn't work because ts files weren't enumerated properly.
  • Loading branch information
AntonAM committed Dec 14, 2015
1 parent 6df7f30 commit c400cb8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions App/tasks/paths.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ module.exports = {

ts: {
path: root,
sources: [root + 'app.ts', root + 'constants/**/.ts', root + 'modules/**/.ts'],
sources: [root + 'app.ts', root + 'constants/**/*.ts', root + 'modules/**/*.ts'],
tsd: root + 'tsd.json',
tsconfig: root + 'tsconfig.json'
}
};
};

0 comments on commit c400cb8

Please sign in to comment.