nossimonov_obsidian-chartdown/tsconfig.json
Nossimonov 7a7d0ca894 Self-contained type environment for store review
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>
2026-07-21 16:57:04 -07:00

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"]
}