Skip to content

Commit 5c05054

Browse files
Update aspnet-webpack to use TS 2.0 and @types
1 parent f13c259 commit 5c05054

File tree

4 files changed

+10
-31
lines changed

4 files changed

+10
-31
lines changed
Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
/typings/
21
/node_modules/
32
/*.js
43
/*.d.ts

src/Microsoft.AspNetCore.SpaServices/npm/aspnet-webpack/package.json

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,12 @@
2525
"webpack-node-externals": "^1.4.3"
2626
},
2727
"devDependencies": {
28-
"tsd": "0.6.5",
28+
"@types/connect": "^3.4.30",
29+
"@types/node": "^6.0.42",
30+
"@types/webpack": "^1.12.34",
2931
"rimraf": "^2.5.4",
30-
"typescript": "^1.8.10"
32+
"typescript": "^2.0.0",
33+
"webpack": "^1.13.2"
3134
},
3235
"peerDependencies": {
3336
"webpack": "^1.13.2"

src/Microsoft.AspNetCore.SpaServices/npm/aspnet-webpack/tsconfig.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,12 @@
44
"module": "commonjs",
55
"target": "es5",
66
"declaration": true,
7-
"outDir": "."
7+
"outDir": ".",
8+
"lib": ["es2015"]
89
},
10+
"files": [
11+
"src/index.ts"
12+
],
913
"exclude": [
1014
"node_modules"
1115
]

src/Microsoft.AspNetCore.SpaServices/npm/aspnet-webpack/tsd.json

Lines changed: 0 additions & 27 deletions
This file was deleted.

0 commit comments

Comments
 (0)