Skip to content

Commit

Permalink
bugfix(serve): "ng serve --aot" broken from test file (closes #267) (#…
Browse files Browse the repository at this point in the history
…269)

* Adding exclusion of spec test files when running ng serve --aot

* changing exclude string to be more specific to filename

* reverting changing exclude string to be more specific to filename
  • Loading branch information
jeremysmartt authored and richavyas committed Jan 20, 2017
1 parent 3a15e7a commit 069e3fc
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,8 @@
"noUnusedLocals": false,
"allowUnreachableCode": false,
"pretty": true
}
},
"exclude": [
"**/*.spec.*"
]
}

0 comments on commit 069e3fc

Please sign in to comment.