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

Commit 236d153

Browse files
authored
Merge pull request #98 from skellock/bump-deps
Bump deps
2 parents 5a3c35e + 24ff61f commit 236d153

File tree

4 files changed

+89
-79
lines changed

4 files changed

+89
-79
lines changed

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363
"@types/electron-store": "^1.2.0",
6464
"@types/mockery": "^1.4.29",
6565
"@types/mousetrap": "^1.5.34",
66-
"@types/react": "^16.0.19",
66+
"@types/react": "^16.0.20",
6767
"@types/react-dom": "^16.0.2",
6868
"@types/react-test-renderer": "^16.0.0",
6969
"@types/sinon": "^2.3.7",
@@ -86,12 +86,12 @@
8686
"ts-loader": "^3.1.1",
8787
"ts-node": "^3.3.0",
8888
"tslint": "^5.8.0",
89-
"typescript": "^2.6.1"
89+
"typescript": "~2.6.1"
9090
},
9191
"license": "MIT",
9292
"lint-staged": {
9393
"*.{ts,tsx}": [
94-
"prettier --write --no-semi --print-width 100 --single-quote",
94+
"prettier --write",
9595
"tslint --fix",
9696
"git add"
9797
]

tsconfig.json

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,9 @@
77
"experimentalDecorators": true,
88
"allowSyntheticDefaultImports": false,
99
"strict": false,
10-
"noUnusedLocals": true,
11-
"typeRoots": [
12-
"node_modules/@types"
13-
]
10+
"noUnusedLocals": true
1411
},
1512
"include": [
1613
"src"
17-
],
18-
"exclude": [
19-
"node_modules/**/*"
2014
]
2115
}

tsconfig.test.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,16 @@
99
"strict": false,
1010
"noUnusedLocals": true,
1111
"outDir": "out-test",
12-
"sourceRoot": "src",
1312
"inlineSourceMap": true,
1413
"typeRoots": [
15-
"node_modules/@types"
14+
"node_modules/@types",
15+
"typings"
1616
]
1717
},
1818
"include": [
1919
"src"
2020
],
2121
"exclude": [
22-
"node_modules/**/*"
22+
"node_modules"
2323
]
2424
}

0 commit comments

Comments
 (0)