babel plugin typescript iife enum 源码
babel-plugin-typescript-iife-enum 目的 TypeScript转换为IIFE中的包装器枚举。 目的 目前,TypeScript将从 enum Test { Key = 1 } 到 var Test ; ( function ( Test ) { Test [ Test [ "Key" ] = 1 ] = "Key" ; } ) ( Test || ( Test = { } ) ) ; 这个结果不利于丑化。 因此,仅将IIFE包装为枚举 const Test = (() => { enum Test { Key = 1
文件列表
babel-plugin-typescript-iife-enum-master.zip
(预估有个10文件)
babel-plugin-typescript-iife-enum-master
src
index.ts
1KB
__tests__
index.spec.ts
1KB
.travis.yml
36B
tsconfig.json
437B
.prettierrc
85B
README.md
1KB
renovate.json
70B
暂无评论