Skip to content

Commit 191cbe2

Browse files
danbeamskovhus
andauthored
Emit .d.ts to dist/ on build via "declaration" in tsconfig.json (#323)
* Emit .d.ts to dist/ on build via "declaration" in tsconfig.json * Bump version to 0.28 Co-authored-by: Kenneth Skovhus <skovhus@users.noreply.github.com>
1 parent 83ccb01 commit 191cbe2

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jest-codemods",
3-
"version": "0.27.0",
3+
"version": "0.28.0",
44
"description": "Codemods for migrating test files to Jest",
55
"license": "MIT",
66
"repository": "skovhus/jest-codemods",

tsconfig.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@
1414
"moduleResolution": "node",
1515
"resolveJsonModule": true,
1616
"downlevelIteration": true,
17-
"outDir": "dist"
17+
"outDir": "dist",
18+
"declaration": true
1819
},
1920
"include": [
2021
"*.*",

0 commit comments

Comments
 (0)