Skip to content

Commit

Permalink
fix for wiki/Speed-up-the-build-on-Windows (#2101)
Browse files Browse the repository at this point in the history
* fix for wiki/Speed-up-the-build-on-Windows

* fix newline in package.json
  • Loading branch information
fr-esco authored and mgechev committed Oct 13, 2017
1 parent be93c61 commit ab4a987
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
"url": "https://github.com/mgechev/angular-seed"
},
"scripts": {
"build.tools": "tsc && gulp build.tools --color",
"build.dev": "gulp build.dev --color --env-config dev",
"build.dev.watch": "gulp build.dev.watch --color",
"build.e2e": "gulp build.e2e --color",
Expand Down
8 changes: 6 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,10 @@
"noLib": false,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"lib": ["es2015"],
"lib": [
"es2015",
"dom"
],
"sourceMap": true,
"pretty": true,
"allowUnreachableCode": false,
Expand Down Expand Up @@ -36,7 +39,8 @@
"tools/manual_typings/seed/operators.d.ts",
"tools/manual_typings/seed/slash.d.ts",
"tools/manual_typings/seed/systemjs-builder.d.ts",
"tools/manual_typings/seed/tildify.d.ts"
"tools/manual_typings/seed/tildify.d.ts",
"tools/tasks/seed/build.tools.ts"
],
"exclude": [
"node_modules",
Expand Down

0 comments on commit ab4a987

Please sign in to comment.