https://github.com/Microsoft/TypeScript
Raw File
Tip revision: b7e9ceaa2855f5ab4b101f974f034b52395f373c authored by Daniel Rosenwasser on 19 October 2019, 19:00:22 UTC
Perform weak type checks when performing comparisons.
Tip revision: b7e9cea
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