Skip to content

Commit 332ccc3

Browse files
chore(typescript): Update to typescript 2.4 and @uirouter/core 5.0.5
1 parent 124e0b3 commit 332ccc3

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
"url": "https://github.com/ui-router/react.git"
3535
},
3636
"dependencies": {
37-
"@uirouter/core": "=5.0.3",
37+
"@uirouter/core": "=5.0.5",
3838
"classnames": "^2.2.5"
3939
},
4040
"peerDependencies": {
@@ -72,7 +72,7 @@
7272
"typedoc-plugin-external-module-name": "^1.0.8",
7373
"typedoc-plugin-internal-external": "^1.0.8",
7474
"typedoc-plugin-ui-router": "^1.0.6",
75-
"typescript": "2.3.3",
75+
"typescript": "~2.4.1",
7676
"ui-router-typedoc-themes": "^1.0.2",
7777
"webpack": "^2.3.1",
7878
"webpack-dev-server": "^2.4.2"

tsconfig.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
"allowSyntheticDefaultImports": true,
99
"suppressImplicitAnyIndexErrors": true,
1010
"forceConsistentCasingInFileNames": true,
11+
"skipLibCheck": true,
1112
"sourceMap": true,
1213
"declaration": true,
1314
"jsx": "react"

webpack.config.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ var config = {
1616
resolve: {
1717
extensions: [".ts", ".tsx", ".js"]
1818
},
19+
watch: process.env.WATCH === 'true',
1920
devtool: 'source-map',
2021
plugins: [
2122
new webpack.optimize.UglifyJsPlugin({
@@ -37,4 +38,4 @@ var config = {
3738
}
3839
};
3940

40-
module.exports = config;
41+
module.exports = config;

0 commit comments

Comments
 (0)