https://github.com/Microsoft/TypeScript
Raw File
Tip revision: 3ec598c947cdcda4349f7f8615d6344c9673235f authored by TypeScript Bot on 15 March 2023, 23:58:05 UTC
Update LKG
Tip revision: 3ec598c
tsconfig-base.json
{
    "compilerOptions": {
        "rootDir": ".",
        "outDir": "../built/local",

        "pretty": true,
        "lib": ["es2018"],
        "target": "es2018",
        "module": "CommonJS",
        "moduleResolution": "node",

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

        "strict": true,
        "strictBindCallApply": false,
        "useUnknownInCatchVariables": false,
        "noImplicitOverride": true,

        "noUnusedLocals": true,
        "noUnusedParameters": true,
        "allowUnusedLabels": false,

        "skipLibCheck": true,

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

        "types": []
    }
}
back to top