Skip to content

Releases: theseanl/tscc

0.9.0

16 Aug 22:13

Choose a tag to compare

  • New spec file key "chunkFormat": "global" | "module" has been added. It controls how output chunks reference each other; the behavior prior to this release corresponds to "global" and is the default value. If it is set to "module", output chunks will be in ECMAScript module format, and will reference other chunk's declarations via import and export statements. Disclaimer it does not preserve entry file's export statements. It is only used for inter-chunk references. This feature does not yet support external modules, and tscc will throw an error if both "chunkFormat": "module" and "external" were used.

0.8.0

10 Jul 09:17

Choose a tag to compare

  • Default language_out has been changed to ECMASCRIPT_NEXT, which matches closure compiler's behavior since v20211107.
  • Now depends on Typescript 4.7.