gapmiss_badges/tsconfig.json
@gapmiss 198152b87f Support any Lucide icon as badge type
- Fall back to using badge type directly as icon name when not in BADGE_TYPES
- Update tsconfig lib to ES2020 for matchAll support
- Document Lucide icon support in README

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-05-26 16:49:29 -05:00

23 lines
442 B
JSON

{
"compilerOptions": {
"baseUrl": ".",
"inlineSourceMap": true,
"inlineSources": true,
"module": "ESNext",
"target": "ES6",
"allowJs": true,
"noImplicitAny": true,
"moduleResolution": "node",
"importHelpers": true,
"isolatedModules": true,
"allowSyntheticDefaultImports": true,
"strictNullChecks": true,
"lib": [
"DOM",
"ES2020"
]
},
"include": [
"src/**/*.ts"
]
}