https://github.com/Microsoft/TypeScript
Raw File
Tip revision: dcad07ffd29854e2b93a86da0ba197f6eec21698 authored by Daniel Rosenwasser on 25 January 2023, 20:14:47 UTC
Update LKG
Tip revision: dcad07f
tsconfig.json
{
    "compilerOptions": {
        "lib": [
            "es2018"
        ],
        "module": "Node16",
        "moduleResolution": "Node16",
        "target": "es2018",
        "noEmit": true,
        // "declaration": true,
        // "emitDeclarationOnly": true,

        "strict": true,
        "skipLibCheck": true,
        "forceConsistentCasingInFileNames": true,
        "allowUnusedLabels": false,
        "noImplicitOverride": true,
        "noImplicitReturns": true,
        "noUnusedLocals": true,
        "noUnusedParameters": true,
        "allowJs": true,
        "checkJs": true
    },

    "include": [
        "**/*.mjs", "**/*.cjs"
    ]
}
back to top