microsoft / microsoft/TypeScript
JS declaration emit invalid when typedefs present and `module.exports` is assigned a non-identifier
Abierto
@sandersn ya está trabajando en esto.
Desde el 6/10/2023.
Bug
Domain: Declaration Emit
- Lenguaje dominante
- Go
- Estrellas
- 111k
- Forks
- 14.4k
- Merge medio
- 1 d 19 h
- PR fusionados (30 d)
- 117
Descripción
Reported at https://github.com/microsoft/TypeScript/issues/46011#issuecomment-1748749050
Repro steps
Run declaration emit on this JS
/** @typedef {string} S */
/** @type {any} */
module.exports = "";
Expected behavior
declare const _exports: any;
export = _exports;
declare namespace _exports {
export { S };
}
type S = string;
The declaration file is error-free.
Actual behavior
declare const _exports: any;
export = _exports;
export type S = string;
The declaration file errors with An export assignment cannot be used in a module with other exported elements.
Additional info
Declaration emit works as expected if module.exports is assigned to an identifier that doesn’t necessitate the _exports temp variable synthesis:
/** @typedef {string} S */
/** @type {any} */
const x = "";
module.exports = x;
produces:
export = x;
/** @typedef {string} S */
/** @type {any} */
declare const x: any;
declare namespace x {
export { S };
}
type S = string;
Guía de contribución
Primeros pasos
- Lee el issue completo y luego la guía de contribución del proyecto.
- Comenta en el issue que vas a ocuparte — evita que dos personas hagan lo mismo.
- Haz un fork del repositorio y trabaja en una rama.
- Abre un pull request que haga referencia al número del issue.
Evaluación
Este issue todavía no se ha evaluado.