epistemic-technology_co-int.../tsconfig.json
Mike Thicke fa7068272f Fix TypeScript errors and tighten eslint config
Align Obsidian event/view handler signatures with the public API,
narrow AI SDK source handling to url sources, and add module
augmentation for the custom settings-changed event. Switch tsconfig
to bundler module resolution with skipLibCheck; keeps types limited
to obsidian to preserve the no-Node mobile guardrail. Reduces tsc
errors from 18 to 3 (remaining 3 are pre-existing test-mock issues).

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-15 15:45:12 -04:00

20 lines
509 B
JSON

{
"compilerOptions": {
"target": "ES2022",
"lib": ["ES2022", "DOM", "DOM.Iterable"],
"module": "ESNext",
"moduleResolution": "bundler",
"skipLibCheck": true,
"jsx": "preserve",
"jsxImportSource": "solid-js",
"strict": true,
"esModuleInterop": true,
"baseUrl": ".",
"paths": {
"@/*": ["src/*"],
"@assets/*": ["assets/*"]
},
"types": ["obsidian"]
},
"include": ["src"]
}