我在TS文件中有这个:
exports.default = module.exports;
(这是为了支持节点样式和TS样式导入。)
有没有办法用纯TS而不是JS创建上面的代码?
我试过了:
export default const = module.exports;
并没有透露。
答案 0 :(得分:1)
有些违反直觉,答案似乎是:
export default module.exports;
是的。
但是,为了使任何.d.ts文件正常运行,你最好这样做:
let $exports = module.exports;
export default $exports;
你可以在这里阅读: https://github.com/Microsoft/TypeScript/issues/16442