Skip to content

Commit 116e92b

Browse files
authored
feat: Update dependencies to work with TypeScript v4 (toshi-toma#67)
BREAKING CHANGE: Update dependencies
2 parents d8d1fa2 + a749975 commit 116e92b

File tree

4 files changed

+594
-260
lines changed

4 files changed

+594
-260
lines changed

.gitignore

+4-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,7 @@ node_modules
55
*.log
66

77
# mac
8-
.DS_STORE
8+
.DS_STORE
9+
10+
# idea
11+
.idea

index.js

+2
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@ module.exports = {
2828
"@typescript-eslint/no-unused-vars": "error",
2929
"@typescript-eslint/explicit-member-accessibility": "off",
3030
"@typescript-eslint/no-object-literal-type-assertion": "off",
31+
"no-use-before-define": "off",
32+
"@typescript-eslint/no-use-before-define": ["error"],
3133
// React
3234
"react/jsx-filename-extension": ["error", { extensions: [".tsx"] }],
3335
"react/prop-types": ["off", {}],

0 commit comments

Comments
 (0)