Notes icon indicating copy to clipboard operation
Notes copied to clipboard

typescript生成"module.exports"

Open any86 opened this issue 3 years ago • 0 comments

// typescript
export = function(){}

生成

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

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

any86 avatar Jul 09 '21 02:07 any86