https://github.com/Microsoft/TypeScript
Raw File
Tip revision: cfd1a6e1275b094764495b8166716d7fe8f6637f authored by TypeScript Bot on 19 May 2022, 21:36:16 UTC
Bump version to 4.7.2 and LKG
Tip revision: cfd1a6e
tsconfig-base.json
{
    "compilerOptions": {
        "pretty": true,
        "lib": ["es2015.iterable", "es2015.generator", "es5"],
        "target": "es5",
        "moduleResolution": "node",
        "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