mirror of
https://github.com/gapmiss/badges.git
synced 2026-07-22 08:00:30 +00:00
Remove unnecessary baseUrl, use Bundler moduleResolution, fix indentation in tsconfig. Bump esbuild to 0.28.1. Read minAppVersion from manifest.json in release script instead of hardcoding. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
22 lines
428 B
JSON
22 lines
428 B
JSON
{
|
|
"compilerOptions": {
|
|
"inlineSourceMap": true,
|
|
"inlineSources": true,
|
|
"module": "ESNext",
|
|
"target": "ES6",
|
|
"allowJs": true,
|
|
"noImplicitAny": true,
|
|
"moduleResolution": "Bundler",
|
|
"importHelpers": true,
|
|
"isolatedModules": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"strictNullChecks": true,
|
|
"lib": [
|
|
"DOM",
|
|
"ES2020"
|
|
]
|
|
},
|
|
"include": [
|
|
"src/**/*.ts"
|
|
]
|
|
}
|