Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Brackets.io in built support for TypeScript

Does brackets.io have in-built support for typescript? I tried the plugin from below link

https://github.com/fdecampredon/brackets-typescript

Steps 1) OS Windows 8.1 2) Installed latest version of Brackets 3) Installed Brackets-TypeScript 4) created .brackets.json and added

{
    "typescript": {
        "target": "ES5",
        "module": "AMD",
        "noImplicitAny": true,
        "sources" : [
            "src/declarations//*.ts",
            "src/main//*.ts"
        ]
    }
}

5) Still now luck for code completion of Intellisense. I have created issue in the same Github, but it looks inactive for sometime now.https://github.com/fdecampredon/brackets-typescript/issues/34

like image 864
skvsree Avatar asked Apr 10 '26 16:04

skvsree


2 Answers

Does brackets.io have in-built support for typescript? I tried the plugin from below link

No.

The plugin you are pointing to is the de facto one.

like image 55
basarat Avatar answered Apr 13 '26 06:04

basarat


Please use https://github.com/zaggino/brackets-typescript if you need a TypeScript plugin. I'm using this one and it is perfect :)

like image 30
Leonzen Avatar answered Apr 13 '26 05:04

Leonzen