Skip to content

Commit

Permalink
fix(ng-cli): don't ignore *.ts files anymore
Browse files Browse the repository at this point in the history
This was necessary before Typescript 1.7, but it shouldn't be an issue anymore and we need *.ts files for ng-cli.
  • Loading branch information
ocombe committed Feb 7, 2016
1 parent a9867fd commit 893cd75
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 0 additions & 2 deletions .npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,6 @@ build.xml
node_modules/*
npm-debug.log
coverage
*.ts
!*.d.ts
tests

#################
Expand Down
5 changes: 4 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,10 @@
"moduleResolution": "node"
},
"files": [
"ng2-translate.ts"
"ng2-translate.ts",
"src/translate.pipe.ts",
"src/translate.parser.ts",
"src/translate.service.ts"
],
"exclude": [
"node_modules"
Expand Down

0 comments on commit 893cd75

Please sign in to comment.