https://github.com/Microsoft/TypeScript
Raw File
Tip revision: 55e564a74a459976625677bd26bf647007723b7d authored by Daniel Rosenwasser on 25 August 2022, 00:34:21 UTC
Guard against empty sets of changes for quick-fixes/refactorings/organize-imports.
Tip revision: 55e564a
tsconfig.json
{
    "extends": "../tsconfig-base",
    "compilerOptions": {
        "outFile": "../../built/local/jsTyping.js",
        "types": [
            "node"
        ],
        "lib": [
            "es6",
            "scripthost"
        ]
    },
    "references": [
        { "path": "../compiler" }
    ],
    "files": [
        "shared.ts",
        "types.ts",
        "jsTyping.ts"
    ]
}
back to top