Skip to content

Commit 00fac3b

Browse files
committed
fix lint setting
1 parent 6f93f1d commit 00fac3b

File tree

3 files changed

+81
-98
lines changed

3 files changed

+81
-98
lines changed

.eslintrc.js

+12-9
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,13 @@ module.exports = {
55
// base
66
'eslint:recommended',
77

8-
// React
9-
'plugin:react/recommended',
10-
'plugin:react-hooks/recommended',
8+
// React A11y
119
'plugin:jsx-a11y/recommended',
1210

11+
// Next.js
12+
'next',
13+
'next/core-web-vitals',
14+
1315
// TypeScript
1416
'plugin:@typescript-eslint/recommended',
1517

@@ -35,12 +37,13 @@ module.exports = {
3537
'import/prefer-default-export': 'off',
3638
'react/destructuring-assignment': 'off',
3739

38-
// for Next.js
39-
'react/react-in-jsx-scope': 'off',
40-
'jsx-a11y/anchor-is-valid': 'off',
41-
42-
// for TypeScript
43-
'react/prop-types': 'off',
40+
'jsx-a11y/anchor-is-valid': [
41+
'error',
42+
{
43+
components: ['Link'],
44+
aspects: ['noHref', 'invalidHref', 'preferButton'],
45+
},
46+
],
4447

4548
// restrict order of imports
4649
'import/order': [

package.json

+2-4
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"check": "npm-run-all check:*",
1313
"check:type": "tsc",
1414
"check:format": "prettier --check src",
15-
"check:lint": "yarn eslint src"
15+
"check:lint": "next lint"
1616
},
1717
"dependencies": {
1818
"next": "11.0.0",
@@ -29,13 +29,11 @@
2929
"@types/react": "17.0.11",
3030
"@typescript-eslint/eslint-plugin": "4.27.0",
3131
"eslint": "7.28.0",
32-
"eslint-config-airbnb-typescript": "12.3.1",
32+
"eslint-config-next": "^11.0.0",
3333
"eslint-config-prettier": "8.3.0",
3434
"eslint-plugin-import": "2.23.4",
3535
"eslint-plugin-jsx-a11y": "6.4.1",
3636
"eslint-plugin-prettier": "3.4.0",
37-
"eslint-plugin-react": "7.24.0",
38-
"eslint-plugin-react-hooks": "4.2.0",
3937
"npm-run-all": "4.1.5",
4038
"postcss": "8.3.4",
4139
"postcss-flexbugs-fixes": "5.0.2",

yarn.lock

+67-85
Original file line numberDiff line numberDiff line change
@@ -988,6 +988,11 @@
988988
resolved "https://registry.yarnpkg.com/@next/env/-/env-11.0.0.tgz#bdd306a45e88ba3e4e7a36aa91806f6486bb61d0"
989989
integrity sha512-VKpmDvTYeCpEQjREg3J4pCmVs/QjEzoLmkM8shGFK6e9AmFd0G9QXOL8HGA8qKhy/XmNb7dHeMqrcMiBua4OgA==
990990

991+
"@next/eslint-plugin-next@11.0.0":
992+
version "11.0.0"
993+
resolved "https://registry.yarnpkg.com/@next/eslint-plugin-next/-/eslint-plugin-next-11.0.0.tgz#e6fb93a00bdaba371904f2b2698b184e6278d369"
994+
integrity sha512-fPZ0904yY1box6bRpR9rJqIkNxJdvzzxH7doXS+cdjyBAdptMR7wj3mcx1hEikBHzWduU8BOXBvRg2hWc09YDQ==
995+
991996
"@next/polyfill-module@11.0.0":
992997
version "11.0.0"
993998
resolved "https://registry.yarnpkg.com/@next/polyfill-module/-/polyfill-module-11.0.0.tgz#cb2f46b323bbe7f8a337ccd80fb82314d4039403"
@@ -1073,6 +1078,11 @@
10731078
estree-walker "^1.0.1"
10741079
picomatch "^2.2.2"
10751080

1081+
"@rushstack/eslint-patch@^1.0.6":
1082+
version "1.0.6"
1083+
resolved "https://registry.yarnpkg.com/@rushstack/eslint-patch/-/eslint-patch-1.0.6.tgz#023d72a5c4531b4ce204528971700a78a85a0c50"
1084+
integrity sha512-Myxw//kzromB9yWgS8qYGuGVf91oBUUJpNvy5eM50sqvmKLbKjwLxohJnkWGTeeI9v9IBMtPLxz5Gc60FIfvCA==
1085+
10761086
"@surma/rollup-plugin-off-main-thread@^1.4.1":
10771087
version "1.4.2"
10781088
resolved "https://registry.yarnpkg.com/@surma/rollup-plugin-off-main-thread/-/rollup-plugin-off-main-thread-1.4.2.tgz#e6786b6af5799f82f7ab3a82e53f6182d2b91a58"
@@ -1214,23 +1224,15 @@
12141224
eslint-scope "^5.1.1"
12151225
eslint-utils "^3.0.0"
12161226

1217-
"@typescript-eslint/parser@^4.4.1":
1218-
version "4.23.0"
1219-
resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-4.23.0.tgz#239315d38e42e852bef43a4b0b01bef78f78911c"
1220-
integrity sha512-wsvjksHBMOqySy/Pi2Q6UuIuHYbgAMwLczRl4YanEPKW5KVxI9ZzDYh3B5DtcZPQTGRWFJrfcbJ6L01Leybwug==
1221-
dependencies:
1222-
"@typescript-eslint/scope-manager" "4.23.0"
1223-
"@typescript-eslint/types" "4.23.0"
1224-
"@typescript-eslint/typescript-estree" "4.23.0"
1225-
debug "^4.1.1"
1226-
1227-
"@typescript-eslint/scope-manager@4.23.0":
1228-
version "4.23.0"
1229-
resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-4.23.0.tgz#8792ef7eacac122e2ec8fa2d30a59b8d9a1f1ce4"
1230-
integrity sha512-ZZ21PCFxPhI3n0wuqEJK9omkw51wi2bmeKJvlRZPH5YFkcawKOuRMQMnI8mH6Vo0/DoHSeZJnHiIx84LmVQY+w==
1227+
"@typescript-eslint/parser@^4.20.0":
1228+
version "4.28.0"
1229+
resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-4.28.0.tgz#2404c16751a28616ef3abab77c8e51d680a12caa"
1230+
integrity sha512-7x4D22oPY8fDaOCvkuXtYYTQ6mTMmkivwEzS+7iml9F9VkHGbbZ3x4fHRwxAb5KeuSkLqfnYjs46tGx2Nour4A==
12311231
dependencies:
1232-
"@typescript-eslint/types" "4.23.0"
1233-
"@typescript-eslint/visitor-keys" "4.23.0"
1232+
"@typescript-eslint/scope-manager" "4.28.0"
1233+
"@typescript-eslint/types" "4.28.0"
1234+
"@typescript-eslint/typescript-estree" "4.28.0"
1235+
debug "^4.3.1"
12341236

12351237
"@typescript-eslint/scope-manager@4.27.0":
12361238
version "4.27.0"
@@ -1240,28 +1242,23 @@
12401242
"@typescript-eslint/types" "4.27.0"
12411243
"@typescript-eslint/visitor-keys" "4.27.0"
12421244

1243-
"@typescript-eslint/types@4.23.0":
1244-
version "4.23.0"
1245-
resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-4.23.0.tgz#da1654c8a5332f4d1645b2d9a1c64193cae3aa3b"
1246-
integrity sha512-oqkNWyG2SLS7uTWLZf6Sr7Dm02gA5yxiz1RP87tvsmDsguVATdpVguHr4HoGOcFOpCvx9vtCSCyQUGfzq28YCw==
1245+
"@typescript-eslint/scope-manager@4.28.0":
1246+
version "4.28.0"
1247+
resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-4.28.0.tgz#6a3009d2ab64a30fc8a1e257a1a320067f36a0ce"
1248+
integrity sha512-eCALCeScs5P/EYjwo6se9bdjtrh8ByWjtHzOkC4Tia6QQWtQr3PHovxh3TdYTuFcurkYI4rmFsRFpucADIkseg==
1249+
dependencies:
1250+
"@typescript-eslint/types" "4.28.0"
1251+
"@typescript-eslint/visitor-keys" "4.28.0"
12471252

12481253
"@typescript-eslint/types@4.27.0":
12491254
version "4.27.0"
12501255
resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-4.27.0.tgz#712b408519ed699baff69086bc59cd2fc13df8d8"
12511256
integrity sha512-I4ps3SCPFCKclRcvnsVA/7sWzh7naaM/b4pBO2hVxnM3wrU51Lveybdw5WoIktU/V4KfXrTt94V9b065b/0+wA==
12521257

1253-
"@typescript-eslint/typescript-estree@4.23.0":
1254-
version "4.23.0"
1255-
resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-4.23.0.tgz#0753b292097523852428a6f5a1aa8ccc1aae6cd9"
1256-
integrity sha512-5Sty6zPEVZF5fbvrZczfmLCOcby3sfrSPu30qKoY1U3mca5/jvU5cwsPb/CO6Q3ByRjixTMIVsDkqwIxCf/dMw==
1257-
dependencies:
1258-
"@typescript-eslint/types" "4.23.0"
1259-
"@typescript-eslint/visitor-keys" "4.23.0"
1260-
debug "^4.1.1"
1261-
globby "^11.0.1"
1262-
is-glob "^4.0.1"
1263-
semver "^7.3.2"
1264-
tsutils "^3.17.1"
1258+
"@typescript-eslint/types@4.28.0":
1259+
version "4.28.0"
1260+
resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-4.28.0.tgz#a33504e1ce7ac51fc39035f5fe6f15079d4dafb0"
1261+
integrity sha512-p16xMNKKoiJCVZY5PW/AfILw2xe1LfruTcfAKBj3a+wgNYP5I9ZEKNDOItoRt53p4EiPV6iRSICy8EPanG9ZVA==
12651262

12661263
"@typescript-eslint/typescript-estree@4.27.0":
12671264
version "4.27.0"
@@ -1276,13 +1273,18 @@
12761273
semver "^7.3.5"
12771274
tsutils "^3.21.0"
12781275

1279-
"@typescript-eslint/visitor-keys@4.23.0":
1280-
version "4.23.0"
1281-
resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-4.23.0.tgz#7215cc977bd3b4ef22467b9023594e32f9e4e455"
1282-
integrity sha512-5PNe5cmX9pSifit0H+nPoQBXdbNzi5tOEec+3riK+ku4e3er37pKxMKDH5Ct5Y4fhWxcD4spnlYjxi9vXbSpwg==
1276+
"@typescript-eslint/typescript-estree@4.28.0":
1277+
version "4.28.0"
1278+
resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-4.28.0.tgz#e66d4e5aa2ede66fec8af434898fe61af10c71cf"
1279+
integrity sha512-m19UQTRtxMzKAm8QxfKpvh6OwQSXaW1CdZPoCaQuLwAq7VZMNuhJmZR4g5281s2ECt658sldnJfdpSZZaxUGMQ==
12831280
dependencies:
1284-
"@typescript-eslint/types" "4.23.0"
1285-
eslint-visitor-keys "^2.0.0"
1281+
"@typescript-eslint/types" "4.28.0"
1282+
"@typescript-eslint/visitor-keys" "4.28.0"
1283+
debug "^4.3.1"
1284+
globby "^11.0.3"
1285+
is-glob "^4.0.1"
1286+
semver "^7.3.5"
1287+
tsutils "^3.21.0"
12861288

12871289
"@typescript-eslint/visitor-keys@4.27.0":
12881290
version "4.27.0"
@@ -1292,6 +1294,14 @@
12921294
"@typescript-eslint/types" "4.27.0"
12931295
eslint-visitor-keys "^2.0.0"
12941296

1297+
"@typescript-eslint/visitor-keys@4.28.0":
1298+
version "4.28.0"
1299+
resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-4.28.0.tgz#255c67c966ec294104169a6939d96f91c8a89434"
1300+
integrity sha512-PjJyTWwrlrvM5jazxYF5ZPs/nl0kHDZMVbuIcbpawVXaDPelp3+S9zpOz5RmVUfS/fD5l5+ZXNKnWhNYjPzCvw==
1301+
dependencies:
1302+
"@typescript-eslint/types" "4.28.0"
1303+
eslint-visitor-keys "^2.0.0"
1304+
12951305
acorn-jsx@^5.3.1:
12961306
version "5.3.1"
12971307
resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.1.tgz#fc8661e11b7ac1539c47dbfea2e72b3af34d267b"
@@ -1910,11 +1920,6 @@ concat-map@0.0.1:
19101920
resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"
19111921
integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=
19121922

1913-
confusing-browser-globals@^1.0.10:
1914-
version "1.0.10"
1915-
resolved "https://registry.yarnpkg.com/confusing-browser-globals/-/confusing-browser-globals-1.0.10.tgz#30d1e7f3d1b882b25ec4933d1d1adac353d20a59"
1916-
integrity sha512-gNld/3lySHwuhaVluJUKLePYirM3QNCKzVxqAdhJII9/WXKVX5PURzMVJspS1jTslSqjeuG4KMVTSouit5YPHA==
1917-
19181923
console-browserify@^1.1.0:
19191924
version "1.2.0"
19201925
resolved "https://registry.yarnpkg.com/console-browserify/-/console-browserify-1.2.0.tgz#67063cef57ceb6cf4993a2ab3a55840ae8c49336"
@@ -2369,32 +2374,19 @@ escape-string-regexp@^4.0.0:
23692374
resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34"
23702375
integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==
23712376

2372-
eslint-config-airbnb-base@^14.2.0, eslint-config-airbnb-base@^14.2.1:
2373-
version "14.2.1"
2374-
resolved "https://registry.yarnpkg.com/eslint-config-airbnb-base/-/eslint-config-airbnb-base-14.2.1.tgz#8a2eb38455dc5a312550193b319cdaeef042cd1e"
2375-
integrity sha512-GOrQyDtVEc1Xy20U7vsB2yAoB4nBlfH5HZJeatRXHleO+OS5Ot+MWij4Dpltw4/DyIkqUfqz1epfhVR5XWWQPA==
2376-
dependencies:
2377-
confusing-browser-globals "^1.0.10"
2378-
object.assign "^4.1.2"
2379-
object.entries "^1.1.2"
2380-
2381-
eslint-config-airbnb-typescript@12.3.1:
2382-
version "12.3.1"
2383-
resolved "https://registry.yarnpkg.com/eslint-config-airbnb-typescript/-/eslint-config-airbnb-typescript-12.3.1.tgz#83ab40d76402c208eb08516260d1d6fac8f8acbc"
2384-
integrity sha512-ql/Pe6/hppYuRp4m3iPaHJqkBB7dgeEmGPQ6X0UNmrQOfTF+dXw29/ZjU2kQ6RDoLxaxOA+Xqv07Vbef6oVTWw==
2385-
dependencies:
2386-
"@typescript-eslint/parser" "^4.4.1"
2387-
eslint-config-airbnb "^18.2.0"
2388-
eslint-config-airbnb-base "^14.2.0"
2389-
2390-
eslint-config-airbnb@^18.2.0:
2391-
version "18.2.1"
2392-
resolved "https://registry.yarnpkg.com/eslint-config-airbnb/-/eslint-config-airbnb-18.2.1.tgz#b7fe2b42f9f8173e825b73c8014b592e449c98d9"
2393-
integrity sha512-glZNDEZ36VdlZWoxn/bUR1r/sdFKPd1mHPbqUtkctgNG4yT2DLLtJ3D+yCV+jzZCc2V1nBVkmdknOJBZ5Hc0fg==
2377+
eslint-config-next@^11.0.0:
2378+
version "11.0.0"
2379+
resolved "https://registry.yarnpkg.com/eslint-config-next/-/eslint-config-next-11.0.0.tgz#0638a839dd46bbf5391076b13c48b6c0cc92ec2f"
2380+
integrity sha512-pmatg4zqb5Vygu2HrSPxbsCBudXO9OZQUMKQCyrPKRvfL8PJ3lOIOzzwsiW68eMPXOZwOc1yxTRZWKNY8OJT0w==
23942381
dependencies:
2395-
eslint-config-airbnb-base "^14.2.1"
2396-
object.assign "^4.1.2"
2397-
object.entries "^1.1.2"
2382+
"@next/eslint-plugin-next" "11.0.0"
2383+
"@rushstack/eslint-patch" "^1.0.6"
2384+
"@typescript-eslint/parser" "^4.20.0"
2385+
eslint-import-resolver-node "^0.3.4"
2386+
eslint-plugin-import "^2.22.1"
2387+
eslint-plugin-jsx-a11y "^6.4.1"
2388+
eslint-plugin-react "^7.23.1"
2389+
eslint-plugin-react-hooks "^4.2.0"
23982390

23992391
eslint-config-prettier@8.3.0:
24002392
version "8.3.0"
@@ -2417,7 +2409,7 @@ eslint-module-utils@^2.6.1:
24172409
debug "^3.2.7"
24182410
pkg-dir "^2.0.0"
24192411

2420-
eslint-plugin-import@2.23.4:
2412+
eslint-plugin-import@2.23.4, eslint-plugin-import@^2.22.1:
24212413
version "2.23.4"
24222414
resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.23.4.tgz#8dceb1ed6b73e46e50ec9a5bb2411b645e7d3d97"
24232415
integrity sha512-6/wP8zZRsnQFiR3iaPFgh5ImVRM1WN5NUWfTIRqwOdeiGJlBcSk82o1FEVq8yXmy4lkIzTo7YhHCIxlU/2HyEQ==
@@ -2438,7 +2430,7 @@ eslint-plugin-import@2.23.4:
24382430
resolve "^1.20.0"
24392431
tsconfig-paths "^3.9.0"
24402432

2441-
eslint-plugin-jsx-a11y@6.4.1:
2433+
eslint-plugin-jsx-a11y@6.4.1, eslint-plugin-jsx-a11y@^6.4.1:
24422434
version "6.4.1"
24432435
resolved "https://registry.yarnpkg.com/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.4.1.tgz#a2d84caa49756942f42f1ffab9002436391718fd"
24442436
integrity sha512-0rGPJBbwHoGNPU73/QCLP/vveMlM1b1Z9PponxO87jfr6tuH5ligXbDT6nHSSzBC8ovX2Z+BQu7Bk5D/Xgq9zg==
@@ -2462,12 +2454,12 @@ eslint-plugin-prettier@3.4.0:
24622454
dependencies:
24632455
prettier-linter-helpers "^1.0.0"
24642456

2465-
eslint-plugin-react-hooks@4.2.0:
2457+
eslint-plugin-react-hooks@^4.2.0:
24662458
version "4.2.0"
24672459
resolved "https://registry.yarnpkg.com/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.2.0.tgz#8c229c268d468956334c943bb45fc860280f5556"
24682460
integrity sha512-623WEiZJqxR7VdxFCKLI6d6LLpwJkGPYKODnkH3D7WpOG5KM8yWueBd8TLsNAetEJNF5iJmolaAKO3F8yzyVBQ==
24692461

2470-
eslint-plugin-react@7.24.0:
2462+
eslint-plugin-react@^7.23.1:
24712463
version "7.24.0"
24722464
resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.24.0.tgz#eadedfa351a6f36b490aa17f4fa9b14e842b9eb4"
24732465
integrity sha512-KJJIx2SYx7PBx3ONe/mEeMz4YE0Lcr7feJTCMyyKb/341NcjuAgim3Acgan89GfPv7nxXK2+0slu0CWXYM4x+Q==
@@ -2842,7 +2834,7 @@ globals@^13.9.0:
28422834
dependencies:
28432835
type-fest "^0.20.2"
28442836

2845-
globby@^11.0.1, globby@^11.0.3:
2837+
globby@^11.0.3:
28462838
version "11.0.3"
28472839
resolved "https://registry.yarnpkg.com/globby/-/globby-11.0.3.tgz#9b1f0cb523e171dd1ad8c7b2a9fb4b644b9593cb"
28482840
integrity sha512-ffdmosjA807y7+lA1NM0jELARVmYul/715xiILEjo3hBLPTcirgQNnXECn5g3mtR8TOLCVbkfua1Hpen25/Xcg==
@@ -3798,16 +3790,6 @@ object.assign@^4.1.0, object.assign@^4.1.2:
37983790
has-symbols "^1.0.1"
37993791
object-keys "^1.1.1"
38003792

3801-
object.entries@^1.1.2:
3802-
version "1.1.3"
3803-
resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.1.3.tgz#c601c7f168b62374541a07ddbd3e2d5e4f7711a6"
3804-
integrity sha512-ym7h7OZebNS96hn5IJeyUmaWhaSM4SVtAPPfNLQEI2MYWCO2egsITb9nab2+i/Pwibx+R0mtn+ltKJXRSeTMGg==
3805-
dependencies:
3806-
call-bind "^1.0.0"
3807-
define-properties "^1.1.3"
3808-
es-abstract "^1.18.0-next.1"
3809-
has "^1.0.3"
3810-
38113793
object.entries@^1.1.4:
38123794
version "1.1.4"
38133795
resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.1.4.tgz#43ccf9a50bc5fd5b649d45ab1a579f24e088cafd"
@@ -4923,7 +4905,7 @@ semver@^6.0.0, semver@^6.1.1, semver@^6.1.2, semver@^6.3.0:
49234905
resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d"
49244906
integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==
49254907

4926-
semver@^7.2.1, semver@^7.3.2, semver@^7.3.5:
4908+
semver@^7.2.1, semver@^7.3.5:
49274909
version "7.3.5"
49284910
resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.5.tgz#0b621c879348d8998e4b0e4be94b3f12e6018ef7"
49294911
integrity sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==
@@ -5450,7 +5432,7 @@ tslib@^1.8.1:
54505432
resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00"
54515433
integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==
54525434

5453-
tsutils@^3.17.1, tsutils@^3.21.0:
5435+
tsutils@^3.21.0:
54545436
version "3.21.0"
54555437
resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-3.21.0.tgz#b48717d394cea6c1e096983eed58e9d61715b623"
54565438
integrity sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==

0 commit comments

Comments
 (0)