mirror of
https://github.com/nossimonov/obsidian-chartdown.git
synced 2026-07-22 08:38:09 +00:00
The synced tsconfig extended a monorepo path that does not exist here, so the store lint ran with a broken config and typed every import any - the entire warning storm, including createEl reading as unsafe. Now: a standalone tsconfig, an installable package.json (obsidian typings so the DOM-helper idiom resolves; @chartdown deps join at 0.2.0), and the happy-dom test shim excluded from the source sync - it fakes Obsidian DOM helpers for tests and is not plugin source. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
14 lines
318 B
JSON
14 lines
318 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"strict": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"exactOptionalPropertyTypes": true,
|
|
"verbatimModuleSyntax": true,
|
|
"skipLibCheck": true,
|
|
"declaration": true
|
|
},
|
|
"include": ["src"]
|
|
}
|