https://github.com/Microsoft/TypeScript
Raw File
Tip revision: fd7ed33253a7811b754113d3182df0be9065655e authored by Sheetal Nandi on 24 January 2020, 20:36:19 UTC
More logging for performance
Tip revision: fd7ed33
tsconfig-base.json
{
    "compilerOptions": {
        "pretty": true,
        "lib": ["es2015.iterable", "es2015.generator", "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