https://github.com/Microsoft/TypeScript
Raw File
Tip revision: 98404ec7bfb5f6f4569cdfe7ba81a6435521ad99 authored by Daniel Rosenwasser on 12 March 2021, 23:47:28 UTC
Try a naive file load during parse, to see if that helps with pre-caching.
Tip revision: 98404ec
tsconfig.json
{
    "compilerOptions": {
        "strictNullChecks": 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