https://github.com/Microsoft/TypeScript
Raw File
Tip revision: 353f431abf315782deaed6dd3e385ea81207998e authored by TypeScript Bot on 25 June 2021, 23:29:16 UTC
Update LKG
Tip revision: 353f431
settings.template.json
// Rename this file 'settings.json' or merge its
// contents into your existing settings.
{
    "eslint.validate": [
        {
            "language": "typescript",
            "autoFix": true
        }
    ],
    "eslint.options": {
        "rulePaths": ["./scripts/eslint/built/rules/"],
        "ext": [".ts"]
    },
    // To use the last-known-good (LKG) compiler version:
    // "typescript.tsdk": "lib"

    // To use the locally built compiler, after 'npm run build':
    // "typescript.tsdk": "built/local"
}
back to top