Fixes: 1. media.ts: wrap placeholder generation in try-catch 2. toolbar.ts: check r.ok, display error message in popover
22 lines
474 B
JSON
22 lines
474 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2024",
|
|
"module": "preserve",
|
|
"moduleResolution": "bundler",
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"strict": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"noImplicitOverride": true,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"isolatedModules": true,
|
|
"verbatimModuleSyntax": true,
|
|
"outDir": "dist",
|
|
"rootDir": "src",
|
|
"lib": ["ES2024", "DOM"]
|
|
},
|
|
"include": ["src"],
|
|
"exclude": ["src/middleware.ts"]
|
|
}
|