https://github.com/Microsoft/TypeScript
Raw File
Tip revision: bd787bd9076f0deb1f2a169b58aea6cfc6d9b521 authored by Sheetal Nandi on 03 March 2023, 23:36:49 UTC
Allow adding arbitrary extension files to program without d.ts files bein on the disk
Tip revision: bd787bd
tsconfig.json
{
    "extends": "../tsconfig-base",
    "compilerOptions": {
        "types": [
            "node"
        ]
    },
    "references": [
        { "path": "../compiler" },
        { "path": "../jsTyping" },
        { "path": "../services" },
        { "path": "../deprecatedCompat" }
    ],
    "include": ["**/*"]
}
back to top