Revision c124d0e2604bac1a428c24b98a1dd6508d860812 authored by TypeScript Bot on 06 December 2022, 06:06:23 UTC, committed by TypeScript Bot on 06 December 2022, 06:06:23 UTC
1 parent 0eca6b0
Raw File
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,

        "strictNullChecks": true,
        "noImplicitAny": true,
        "noImplicitThis": true,
        "strictPropertyInitialization": true,
        "noUnusedLocals": true,
        "noUnusedParameters": true,

        "skipLibCheck": true,

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

        "types": []
    }
}
back to top