mirror of
https://github.com/gapmiss/badges.git
synced 2026-07-22 08:00:30 +00:00
- 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>
23 lines
442 B
JSON
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"
|
|
]
|
|
}
|