https://github.com/Microsoft/TypeScript
Raw File
Tip revision: 66f43c3348c33f8764beb301cbf39f7de9a2c184 authored by Nathan Shively-Sanders on 02 August 2022, 23:48:04 UTC
forbid function named require in JS
Tip revision: 66f43c3
tsconfig.json
{
    "compilerOptions": {
        "strict": true,
        "removeComments": false,
        "declaration": false,
        "sourceMap": true,
        "newLine": "lf",
        "target": "es6",
        "module": "commonjs",
        "types": ["node"],
        "lib": ["es6", "scripthost"],
    },

    "include": [
        "generateLocalizedDiagnosticMessages.ts",
        "processDiagnosticMessages.ts",
        "configurePrerelease.ts",
        "buildProtocol.ts",
        "produceLKG.ts",
        "word2md.ts",
        "request-pr-review.ts"
    ]
}
back to top