https://github.com/Microsoft/TypeScript
Raw File
Tip revision: 21e3f6812cc4ed29f816341c55de3fa09505a35c authored by Ron Buckton on 15 June 2017, 02:59:58 UTC
[WIP] harness rewrite
Tip revision: 21e3f68
tsconfig-base.json
{
    "compilerOptions": {
        "lib": ["es5"],
        "noEmitOnError": true,
        "noImplicitAny": true,
        "noImplicitThis": true,
        "noUnusedLocals": true,
        "noUnusedParameters": true,
        "pretty": true,
        "preserveConstEnums": true,
        "stripInternal": true,
        "sourceMap": true,
        "target": "es5",
        "types": []
    }
}
back to top