https://github.com/Microsoft/TypeScript
Raw File
Tip revision: e7bc5f9293729de31c7ff9375dae8638ad3456fd authored by Ron Buckton on 22 May 2020, 01:55:55 UTC
Move seldom used fields to separate object to reduce polymorphism
Tip revision: e7bc5f9
tsconfig.json
{
    "extends": "../tsconfig-base",
    "compilerOptions": {
        "removeComments": false,
        "outFile": "../../built/local/server.js",
        "preserveConstEnums": true,
        "types": [
            "node"
        ]
    },
    "references": [
        { "path": "../compiler" },
        { "path": "../jsTyping" },
        { "path": "../services" }
    ],
    "files": [
        "types.ts",
        "utilitiesPublic.ts",
        "utilities.ts",
        "watchType.ts",
        "protocol.ts",
        "scriptInfo.ts",
        "typingsCache.ts",
        "project.ts",
        "editorServices.ts",
        "packageJsonCache.ts",
        "session.ts",
        "scriptVersionCache.ts"
    ]
}
back to top