diff --git a/src/Microsoft.AspNetCore.SpaServices/npm/aspnet-webpack/.gitignore b/src/Microsoft.AspNetCore.SpaServices/npm/aspnet-webpack/.gitignore index a1df9a5..025755a 100644 --- a/src/Microsoft.AspNetCore.SpaServices/npm/aspnet-webpack/.gitignore +++ b/src/Microsoft.AspNetCore.SpaServices/npm/aspnet-webpack/.gitignore @@ -1,4 +1,3 @@ -/typings/ /node_modules/ /*.js /*.d.ts diff --git a/src/Microsoft.AspNetCore.SpaServices/npm/aspnet-webpack/package.json b/src/Microsoft.AspNetCore.SpaServices/npm/aspnet-webpack/package.json index 93cd9b5..7fb1e3d 100644 --- a/src/Microsoft.AspNetCore.SpaServices/npm/aspnet-webpack/package.json +++ b/src/Microsoft.AspNetCore.SpaServices/npm/aspnet-webpack/package.json @@ -25,9 +25,12 @@ "webpack-node-externals": "^1.4.3" }, "devDependencies": { - "tsd": "0.6.5", + "@types/connect": "^3.4.30", + "@types/node": "^6.0.42", + "@types/webpack": "^1.12.34", "rimraf": "^2.5.4", - "typescript": "^1.8.10" + "typescript": "^2.0.0", + "webpack": "^1.13.2" }, "peerDependencies": { "webpack": "^1.13.2" diff --git a/src/Microsoft.AspNetCore.SpaServices/npm/aspnet-webpack/tsconfig.json b/src/Microsoft.AspNetCore.SpaServices/npm/aspnet-webpack/tsconfig.json index de676e9..2ebeb45 100644 --- a/src/Microsoft.AspNetCore.SpaServices/npm/aspnet-webpack/tsconfig.json +++ b/src/Microsoft.AspNetCore.SpaServices/npm/aspnet-webpack/tsconfig.json @@ -4,8 +4,12 @@ "module": "commonjs", "target": "es5", "declaration": true, - "outDir": "." + "outDir": ".", + "lib": ["es2015"] }, + "files": [ + "src/index.ts" + ], "exclude": [ "node_modules" ] diff --git a/src/Microsoft.AspNetCore.SpaServices/npm/aspnet-webpack/tsd.json b/src/Microsoft.AspNetCore.SpaServices/npm/aspnet-webpack/tsd.json deleted file mode 100644 index 5045ee7..0000000 --- a/src/Microsoft.AspNetCore.SpaServices/npm/aspnet-webpack/tsd.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "version": "v4", - "repo": "borisyankov/DefinitelyTyped", - "ref": "master", - "path": "typings", - "bundle": "typings/tsd.d.ts", - "installed": { - "webpack/webpack.d.ts": { - "commit": "0144ad5a74053f2292424847259c4c8e1d0fecaa" - }, - "node/node.d.ts": { - "commit": "e937b3e64af586d19f2ea29fdf771e9dc4feecc8" - }, - "source-map/source-map.d.ts": { - "commit": "0144ad5a74053f2292424847259c4c8e1d0fecaa" - }, - "uglify-js/uglify-js.d.ts": { - "commit": "0144ad5a74053f2292424847259c4c8e1d0fecaa" - }, - "es6-promise/es6-promise.d.ts": { - "commit": "0144ad5a74053f2292424847259c4c8e1d0fecaa" - }, - "connect/connect.d.ts": { - "commit": "e937b3e64af586d19f2ea29fdf771e9dc4feecc8" - } - } -}