https://github.com/Microsoft/TypeScript
Raw File
Tip revision: 7eb4739ab7245d859751c3c43dafc60637fba90d authored by Nathan Shively-Sanders on 08 April 2019, 21:12:18 UTC
Update LKG and package.json version (#30816)
Tip revision: 7eb4739
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