You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+36
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,41 @@
1
1
## Changelog
2
2
3
+
# v2.0.0
4
+
Bugfixes
5
+
- Inline annotations will now be ignored by default. E. g. for this annotation
6
+
```js
7
+
/**@type{string}*/
8
+
var fuu ="bar";
9
+
```
10
+
were created a member in the corresponding namespace
11
+
- Fixed errors in log messages
12
+
- Module types were not parsed correctly ( [#39](https://github.com/otris/jsdoc-tsd/issues/39) and [#52](https://github.com/otris/jsdoc-tsd/issues/52))
13
+
- Support for`@extends`
14
+
- Fixes for resolving memberships in classes
15
+
- Property params of type arrays caused an exception while generating the definition file
16
+
```js
17
+
/**
18
+
* @param {object[]} fuu
19
+
* @param {string} fuu[].bar <= Caused exception
20
+
*/
21
+
```
22
+
- In some cases, type `null` caused exceptions
23
+
24
+
New features inthis release:
25
+
- Type definitions != object will be transformed to type declarations, e. g.
26
+
```js
27
+
/** @typedef {string|number} NumberLike */
28
+
```
29
+
will be transformed to
30
+
```ts
31
+
declare type NumberLike: string|number;
32
+
```
33
+
- Support for annotation `@this` ([#54](https://github.com/otris/jsdoc-tsd/issues/54))
34
+
- Support for annotation `@hideconstructor` ([#53](https://github.com/otris/jsdoc-tsd/issues/53))
35
+
- Support for annotation `@extends` ([#56](https://github.com/otris/jsdoc-tsd/issues/56))
36
+
- Undocumented members will be skipped by default (can be configured)
37
+
- Possibility to disable the since-tag check
38
+
3
39
# v1.0.4
4
40
Bugfixes
5
41
- We updated [dts-dom](https://github.com/RyanCavanaugh/dts-dom) to fix [#49](https://github.com/otris/jsdoc-tsd/issues/49)
0 commit comments