Skip to content
This repository has been archived by the owner on Dec 1, 2019. It is now read-only.

Commit

Permalink
fix(dependencies): upgrading node dependencies (#472)
Browse files Browse the repository at this point in the history
enhanced-resolve upgraded to v3.3.0 due to a compilation error with
@angular/cli [#7113](angular/angular-cli#7113)

tsconfig.json upgraded due to missing node and mocha type definitions
  • Loading branch information
andreasonny83 authored and s-panferov committed Jul 25, 2017
1 parent c3a0167 commit 9473d2c
Show file tree
Hide file tree
Showing 3 changed files with 340 additions and 324 deletions.
4 changes: 2 additions & 2 deletions package.json
Expand Up @@ -33,7 +33,7 @@
"homepage": "https://github.com/s-panferov/awesome-typescript-loader",
"dependencies": {
"colors": "^1.1.2",
"enhanced-resolve": "^3.1.0",
"enhanced-resolve": "3.3.0",
"loader-utils": "^1.1.0",
"lodash": "^4.17.4",
"micromatch": "^3.0.3",
Expand Down Expand Up @@ -63,6 +63,6 @@
"temp": "^0.8.3",
"tslint": "^5.4.3",
"typescript": "^2.4.1",
"webpack": "^2.6.1"
"webpack": "~2.7.0"
}
}
6 changes: 5 additions & 1 deletion tsconfig.json
Expand Up @@ -12,9 +12,13 @@
"noFallthroughCasesInSwitch": true,
"removeComments": true,
"suppressImplicitAnyIndexErrors": true,
"lib": [ "es6", "dom" ]
"lib": [ "es6", "dom" ],
"types" : ["node", "lodash", "mocha"]
},
"include": [
"src/**/*"
],
"exclude": [
"node_modules"
]
}

0 comments on commit 9473d2c

Please sign in to comment.