https://github.com/Microsoft/TypeScript
Raw File
Tip revision: d261d4d510dcbc6ceb1ee6ba2ef3d4959bf8a4f7 authored by Ron Buckton on 29 September 2020, 01:08:06 UTC
Treat void-typed properties as optional
Tip revision: d261d4d
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