https://github.com/Microsoft/TypeScript
Raw File
Tip revision: 25370369b23f025815999ede8ecd2df2185d71c0 authored by Ron Buckton on 22 January 2019, 23:25:14 UTC
Enable debug info by default when debugging the language server
Tip revision: 2537036
tsconfig-base.json
{
    "compilerOptions": {
        "pretty": true,
        "lib": ["es2015.iterable", "es5"],
        "target": "es5",
        "rootDir": ".",

        "declaration": true,
        "declarationMap": true,
        "sourceMap": true,
        "composite": true,
        "noEmitOnError": true,

        "strictNullChecks": true,
        "noImplicitAny": true,
        "noImplicitThis": true,
        "strictPropertyInitialization": true,
        "noUnusedLocals": true,
        "noUnusedParameters": true,

        "skipLibCheck": true,

        "alwaysStrict": true,
        "preserveConstEnums": true,
        "newLine": "lf",

        "types": []
    }
}
back to top