any86 / Notes

:rocket: 笔记
https://github.com/any86/Notes/issues
28 stars 9 forks source link

typescript生成"module.exports" #68

Open any86 opened 3 years ago

any86 commented 3 years ago
// typescript
export = function(){}

生成

// javascript
module.export = function(){}

这样就可以requrie('xxx'), 不用requrie('xxx').default了