https://github.com/Microsoft/TypeScript
Raw File
Tip revision: c759b633d6e33754fb0cd4473759062ce920c4a2 authored by Ron Buckton on 20 February 2016, 01:01:02 UTC
Adds ES6 transformer
Tip revision: c759b63
tsconfig.json
{
    "compilerOptions": {
        "module": "commonjs",
        "noImplicitAny": true,
        "removeComments": true,
        "preserveConstEnums": true,
        "out": "../../built/local/tsserver.js",
        "sourceMap": true
    },
    "files": [
        "node.d.ts",
        "editorServices.ts",
        "protocol.d.ts",
        "server.ts",
        "session.ts"
    ]
}
back to top