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
fix(ts-interface-generator): enable running with TypeScript < 4.8
TypeScript 4.8 changed the compiler API incompatibly. This change checks
the version and uses the
older method signatures if needed. Works at least in TS 4.5 and higher;
older versions have not been tested. Tested in all current higher
versions up to TS 5.0 and 5.1.1-rc.
fix#396
Copy file name to clipboardExpand all lines: packages/ts-interface-generator/README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -52,8 +52,8 @@ This is the list of available commandline arguments, including the ones already
52
52
-`--version`: Display the version of the generator
53
53
-`-c`, `--config`: Path to the configuration file to use
54
54
-`-w`, `--watch`: Run in watch mode
55
-
-`--loglevel`: Set the console logging verbosity; options are: "error", "warn", "info", "debug", "trace"; default level is "info"
56
-
-`--jsdoc`: Set the amount of JSDoc which should be generated; options are: "none", "minimal", "verbose"; default is "minimal": by default, the JSDoc documentation written in the control metadata for the properties, aggregations etc. is also used for the generated methods. By setting `--jsdoc none` or `--jsdoc verbose` you can decide to omit all JSDoc or to also have all the `@param` and `@returns` tags as well as some additional generic documentation generated.
55
+
-`--loglevel`: Set the console logging verbosity; options are: `error`, `warn`, `info`, `debug`, `trace`; default level is `info`
56
+
-`--jsdoc`: Set the amount of JSDoc which should be generated; options are: `none`, `minimal`, `verbose`; default is `verbose`: by default, the JSDoc documentation written in the control metadata for the properties, aggregations etc. is added to the generated methods, plus generic documentation for the `@param` and `@returns` tags as well as some additional generic documentation like for default values (if any). By setting `--jsdoc none` or `--jsdoc minimal` you can decide to omit all JSDoc or to only add the JSDoc written in the control.
0 commit comments