是否可以将TS源构建到一个文件中,该文件中也包含node_modules
个导入包的源?
这对无服务器项目非常有帮助。之前,我在非TS项目中做到了这一点,但是由于其他原因,我使用的是webpack。
似乎以前曾经有过短暂的可能,但这是由于https://github.com/Microsoft/TypeScript/issues/13414错误造成的?
答案 0 :(得分:1)
您将需要使用诸如webpack之类的捆绑器来捆绑已编译的代码和所有的node_modules依赖项。 TypeScript编译器(add_action( 'edit_form_after_editor', 'myprefix_edit_form_after_editor' );
function myprefix_edit_form_after_editor() {
echo '<h2>This is edit_form_after_editor!</h2>';
}
)只是将TypeScript代码转换为JavaScript,并且不会处理捆绑。