1// Rename this file 'settings.json' or merge its 2// contents into your existing settings. 3{ 4 "eslint.validate": [ 5 { 6 "language": "typescript", 7 "autoFix": true 8 } 9 ], 10 "eslint.options": { 11 "rulePaths": ["./scripts/eslint/built/rules/"], 12 "ext": [".ts"] 13 }, 14 // To use the last-known-good (LKG) compiler version: 15 // "typescript.tsdk": "lib" 16 17 // To use the locally built compiler, after 'npm run build': 18 // "typescript.tsdk": "built/local" 19}