https://github.com/Microsoft/TypeScript
Raw File
Tip revision: 25370369b23f025815999ede8ecd2df2185d71c0 authored by Ron Buckton on 22 January 2019, 23:25:14 UTC
Enable debug info by default when debugging the language server
Tip revision: 2537036
tsconfig.json
{
    "extends": "../tsconfig-base",
    "compilerOptions": {
        "removeComments": true,
        "outFile": "../../built/local/server.js",
        "preserveConstEnums": true,
        "types": [
            "node"
        ]
    },
    "references": [
        { "path": "../compiler" },
        { "path": "../jsTyping" },
        { "path": "../services" }
    ],
    "files": [
        "types.ts",
        "utilities.ts",
        "protocol.ts",
        "scriptInfo.ts",
        "typingsCache.ts",
        "project.ts",
        "editorServices.ts",
        "session.ts",
        "scriptVersionCache.ts"
    ]
}
back to top