From 49c347c97828fbd9d3684ae7d4754994c504c1e4 Mon Sep 17 00:00:00 2001 From: Gao Sun Date: Tue, 7 Mar 2023 14:51:43 +0800 Subject: [PATCH] fix(jest): fix package.json export (#109) --- .changeset/tall-games-study.md | 5 +++++ packages/jest-config/package.json | 5 +++-- 2 files changed, 8 insertions(+), 2 deletions(-) create mode 100644 .changeset/tall-games-study.md diff --git a/.changeset/tall-games-study.md b/.changeset/tall-games-study.md new file mode 100644 index 0000000..71a291f --- /dev/null +++ b/.changeset/tall-games-study.md @@ -0,0 +1,5 @@ +--- +"@silverhand/jest-config": patch +--- + +fix package.json export diff --git a/packages/jest-config/package.json b/packages/jest-config/package.json index b2c9492..d2d83cb 100644 --- a/packages/jest-config/package.json +++ b/packages/jest-config/package.json @@ -5,8 +5,9 @@ "author": "Silverhand Inc. ", "homepage": "https://github.com/silverhand-io/configs#readme", "license": "MIT", - "module": "./index.js", - "types": "./index.d.ts", + "main": "jest.config.js", + "module": "jest.config.js", + "types": "jest.config.d.ts", "files": [ "jest.config.d.ts", "jest.config.js"