Skip to content

Commit 4958db9

Browse files
Version Packages
1 parent 5deefc4 commit 4958db9

File tree

3 files changed

+21
-20
lines changed

3 files changed

+21
-20
lines changed

.changeset/serious-bottles-buy.md

Lines changed: 0 additions & 19 deletions
This file was deleted.

packages/openapi-ts/CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,25 @@
11
# @hey-api/openapi-ts
22

3+
## 0.67.0
4+
5+
### Minor Changes
6+
7+
- [#2003](https://github.com/hey-api/openapi-ts/pull/2003) [`1504a06`](https://github.com/hey-api/openapi-ts/commit/1504a0642fdb4f856d1650fade2d30988b35b4ff) Thanks [@mrlubos](https://github.com/mrlubos)! - feat: respect `moduleResolution` value in `tsconfig.json`
8+
9+
### Respecting `moduleResolution` value in `tsconfig.json`
10+
11+
This release introduces functionality related to your `tsconfig.json` file. The initial feature properly respects the value of your `moduleResolution` field. If you're using `nodenext`, the relative module paths in your output will be appended with `.js`. To preserve the previous behavior where we never appended `.js` to relative module paths, set `output.tsConfigPath` to `off`.
12+
13+
```js
14+
export default {
15+
input: 'https://get.heyapi.dev/hey-api/backend',
16+
output: {
17+
path: 'src/client',
18+
tsConfigPath: 'off',
19+
},
20+
};
21+
```
22+
323
## 0.66.7
424

525
### Patch Changes

packages/openapi-ts/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@hey-api/openapi-ts",
3-
"version": "0.66.7",
3+
"version": "0.67.0",
44
"description": "🚀 The OpenAPI to TypeScript codegen. Generate clients, SDKs, validators, and more.",
55
"homepage": "https://heyapi.dev/",
66
"repository": {

0 commit comments

Comments
 (0)