Skip to content

Commit 8c86d0a

Browse files
fix(tinybench): fix package.json ordering warning
"▲ [WARNING] The condition "types" here will never be used as it comes after both "import" and "require" [package.json]"
1 parent 8826760 commit 8c86d0a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/tinybench-plugin/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@
1313
"types": "dist/index.d.ts",
1414
"type": "module",
1515
"exports": {
16+
"types": "./dist/index.d.ts",
1617
"import": "./dist/index.es5.js",
17-
"require": "./dist/index.cjs",
18-
"types": "./dist/index.d.ts"
18+
"require": "./dist/index.cjs"
1919
},
2020
"files": [
2121
"dist"

0 commit comments

Comments
 (0)