Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"prebuild:dev": "npm run clean:dist",
"build:dev": "webpack --progress --profile --colors --display-error-details --display-cached",
"prebuild:prod": "npm run clean:dist",
"build:prod": "webpack --config webpack.prod.config.js --progress --profile --colors --display-error-details --display-cached",
"build:prod": "webpack --config webpack.prod.config.js --progress --profile --colors --display-error-details --display-cached --bail",
"server": "npm run server:dev:hmr",
"server:dev": "webpack-dev-server --inline --progress --profile --colors --watch --display-error-details --display-cached --content-base src/",
"server:dev:hmr": "npm run server:dev -- --hot",
Expand Down Expand Up @@ -84,7 +84,7 @@
"ts-node": "^0.5.5",
"tsconfig-lint": "^0.6.0",
"tslint": "^3.3.0",
"tslint-loader": "^2.1.0",
"tslint-loader": "^2.1.3",
"typedoc": "^0.3.12",
"typescript": "1.8.2",
"typings": "^0.6.8",
Expand Down
2 changes: 1 addition & 1 deletion webpack.prod.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ module.exports = helpers.defaults({
// Other module loader config
tslint: {
emitErrors: true,
failOnHint: false, //true, : https://github.com/AngularClass/angular2-webpack-starter/issues/374
failOnHint: true,
resourcePath: 'src',
},

Expand Down