Skip to content
This repository has been archived by the owner on Oct 9, 2023. It is now read-only.

Commit

Permalink
fix(powerful-jest): fix module resolve problem
Browse files Browse the repository at this point in the history
  • Loading branch information
zanminkian committed Apr 19, 2023
1 parent ced9fdf commit 6e69375
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 2 deletions.
5 changes: 5 additions & 0 deletions .changeset/eight-kangaroos-hunt.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@zanminkian/powerful-jest": patch
---

fix(powerful-jest): fix module resolve problem
7 changes: 5 additions & 2 deletions packages/powerful-jest/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,11 @@
"ts-jest"
],
"exports": {
"default": "./src/index.cjs",
"types": "./src/index.d.cts"
"default": {
"require": "./src/index.cjs",
"import": "./src/index.js"
},
"types": "./src/index.d.ts"
},
"bin": {
"jest": "./bin/jest.js"
Expand Down
1 change: 1 addition & 0 deletions packages/powerful-jest/src/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export * from '@jest/globals'

0 comments on commit 6e69375

Please sign in to comment.