skvsree
skvsree

Reputation: 497

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

Upvotes: 3

Views: 13924

Answers (3)

Leonzen
Leonzen

Reputation: 1265

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

Upvotes: 1

skvsree
skvsree

Reputation: 497

I figured this out after I posted this request in Github page of the plugin.

there is one other typescript plugin for brackets and if you have installed it, that intervenes with this.

right one is fdecampredon/brackets-typescript

Upvotes: 0

basarat
basarat

Reputation: 276289

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.

Upvotes: 3

Related Questions