bracket.io是否内置了对打字稿的支持?我从下面的链接
尝试了插件https://github.com/fdecampredon/brackets-typescript
步骤 1)OS Windows 8.1 2)安装了最新版的Brackets 3)安装Brackets-TypeScript 4)创建了.brackets.json并添加了
{
"typescript": {
"target": "ES5",
"module": "AMD",
"noImplicitAny": true,
"sources" : [
"src/declarations//*.ts",
"src/main//*.ts"
]
}
}
5)现在仍然可以运行Intellisense的代码完成。 我在同一个Github中创建了问题,但它现在看起来一直处于非活动状态。https://github.com/fdecampredon/brackets-typescript/issues/34
答案 0 :(得分:3)
bracket.io是否内置了对打字稿的支持?我从下面的链接
尝试了插件
没有。
您指向的插件是事实上的插件。
答案 1 :(得分:1)
如果您需要TypeScript插件,请使用https://github.com/zaggino/brackets-typescript。我正在使用这个,它很完美:)
答案 2 :(得分:0)