文件名称:ts-transform-system-import:将TS中的System.import转换为Promise包装的require
文件大小:7KB
文件格式:ZIP
更新时间:2024-03-31 16:12:30
系统开源
ts-transform-system-import [已弃用]请改为使用ES6 import 。 该插件仅用于向后兼容。 将TS中的System.import转换为Promise包装的需求 用法 编译TS时,将其放在变压器before的列表中。 这使您可以: System.import('foo').then(module) 成为 Promise.resolve(require('foo')).then(module)
【文件预览】:
ts-transform-system-import-master
----package.json(1KB)
----test()
--------fixture()
--------index.test.ts(397B)
----LICENSE(1KB)
----src()
--------transform.ts(2KB)
--------index.ts(50B)
----.npmignore(4B)
----tsconfig.json(475B)
----.gitignore(602B)
----README.md(394B)
----compile.ts(1KB)