react-lazy-load-image-component 1.5.1 → 1.5.4

Sign up to get free protection for your applications and to get access to all the features.
package/.babelrc CHANGED
@@ -1,6 +1,7 @@
1
1
  {
2
- "presets": ["env", "react"],
3
- "plugins": [
4
- "transform-object-rest-spread"
2
+ "presets": [
3
+ "@babel/preset-env",
4
+ "@babel/preset-react",
5
+ "@babel/preset-typescript"
5
6
  ]
6
- }
7
+ }
package/.eslintrc CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "extends": "eslint:recommended",
3
- "parser": "babel-eslint",
3
+ "parser": "@babel/eslint-parser",
4
4
  "env": {
5
5
  "browser": true,
6
6
  "node": true,
@@ -24,7 +24,7 @@
24
24
  "curly": [1, "multi-line"],
25
25
  "dot-location": [1, "property"],
26
26
  "dot-notation": 1,
27
- "eqeqeq": [1, "smart"],
27
+ "eqeqeq": 1,
28
28
  "guard-for-in": 1,
29
29
  "no-alert": 1,
30
30
  "no-caller": 2,