Skip to content

Commit ee98704

Browse files
committed
Fixes minimatch issue and bumps version
1 parent cf68fa6 commit ee98704

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "beautiful-react-hooks",
3-
"version": "5.0.3",
3+
"version": "5.1.0",
44
"description": "A collection of beautiful (and hopefully useful) React hooks to speed-up your components and hooks development",
55
"type": "module",
66
"scripts": {
@@ -407,4 +407,4 @@
407407
"types": "./dist/useAudio.d.ts"
408408
}
409409
}
410-
}
410+
}

tsconfig.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,15 @@
33
"./src/**/*.ts"
44
],
55
"compilerOptions": {
6+
"types": ["node"],
67
"allowSyntheticDefaultImports": true,
78
"noImplicitAny": true,
89
"target": "es5",
910
"jsx": "react",
1011
"allowJs": false,
1112
"moduleResolution": "node",
1213
"esModuleInterop": true,
14+
"skipLibCheck": true,
1315
"strictNullChecks": true,
1416
"rootDir": "./src",
1517
"outDir": "./dist",

0 commit comments

Comments
 (0)