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
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.