我想在 Brackets 代码编辑器中编写 TypeScript 和 CoffeeScript,但我遇到了困难。如何将其编译为 vanilla js?如何在html页面中引用它?
问问题
7663 次
1 回答
10
对于打字稿
智能/语法高亮/实时错误检查
你需要brackets-typescript
插件:https ://github.com/fdecampredon/brackets-typescript
编译为原版 JS
您可以使用 grunt 为您执行此操作:https ://github.com/grunt-ts/grunt-ts 。每当您将文件保存在方括号(或任何其他编辑器)中时,它都可以编译您的项目。输出是 JavaScript
如何在 html 页面中引用它
script
如果您刚开始使用 JavaScript,您可以使用普通标记指向生成的 JS 。
或者,您可以使用 RequireJS http://requirejs.org/之类的东西
于 2014-07-01T10:53:50.930 回答