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

Commit 9473d2c

Browse files
andreasonny83s-panferov
authored andcommitted
fix(dependencies): upgrading node dependencies (#472)
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
1 parent c3a0167 commit 9473d2c

File tree

3 files changed

+340
-324
lines changed

3 files changed

+340
-324
lines changed

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
"homepage": "https://github.com/s-panferov/awesome-typescript-loader",
3434
"dependencies": {
3535
"colors": "^1.1.2",
36-
"enhanced-resolve": "^3.1.0",
36+
"enhanced-resolve": "3.3.0",
3737
"loader-utils": "^1.1.0",
3838
"lodash": "^4.17.4",
3939
"micromatch": "^3.0.3",
@@ -63,6 +63,6 @@
6363
"temp": "^0.8.3",
6464
"tslint": "^5.4.3",
6565
"typescript": "^2.4.1",
66-
"webpack": "^2.6.1"
66+
"webpack": "~2.7.0"
6767
}
6868
}

tsconfig.json

+5-1
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,13 @@
1212
"noFallthroughCasesInSwitch": true,
1313
"removeComments": true,
1414
"suppressImplicitAnyIndexErrors": true,
15-
"lib": [ "es6", "dom" ]
15+
"lib": [ "es6", "dom" ],
16+
"types" : ["node", "lodash", "mocha"]
1617
},
1718
"include": [
1819
"src/**/*"
20+
],
21+
"exclude": [
22+
"node_modules"
1923
]
2024
}

0 commit comments

Comments
 (0)