Skip to content

Commit

Permalink
fix(typing): don't mark BabelConfig as internal type (#1667)
Browse files Browse the repository at this point in the history
Close #1666
  • Loading branch information
ahnpnl committed May 21, 2020
1 parent 238a538 commit 558c307
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -121,7 +121,7 @@
"npm-run-all": "latest",
"prettier": "2.x",
"source-map": "latest",
"typescript": "^3.9.2"
"typescript": "3.x"
},
"lint-staged": {
"*.{ts,tsx}": [
Expand Down
2 changes: 1 addition & 1 deletion src/types.ts
Expand Up @@ -23,7 +23,7 @@ export type BabelJestTransformer = {
[K in Exclude<keyof Transformer, 'createTransformer'>]: Exclude<Transformer[K], undefined>
}
/**
* @internal
* Don't mark as internal because it is used in TsJestGlobalOptions which is an exposed type
*/
export type BabelConfig = _babel.TransformOptions

Expand Down

0 comments on commit 558c307

Please sign in to comment.