mirror of
https://github.com/epistemic-technology/co-intelligence.git
synced 2026-07-22 06:45:17 +00:00
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>
20 lines
509 B
JSON
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"]
|
|
}
|