Skip to content

Commit

Permalink
Fix npm publish
Browse files Browse the repository at this point in the history
octokit/webhooks.js#552 broke `npm publish` in
this repository by introduces `.ts`extensions to some imports (which
caused `npm publish` to fail with "error TS2691: An import path cannot
end with a '.ts' extension"). This fixes that.
  • Loading branch information
lerebear committed Dec 17, 2023
1 parent 511d890 commit e4f697c
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tsconfig.json
Expand Up @@ -8,6 +8,9 @@
"strict": true,
"target": "es2019"
},
"ts-node": {
"esm": true
},
"include": [
"src/**/*"
]
Expand Down

0 comments on commit e4f697c

Please sign in to comment.