mirror of
https://github.com/meganjjzhang/Promptuary.git
synced 2026-07-22 07:49:22 +00:00
Obsidian plugin for annotation-driven AI editing: - Reading mode: highlights + notes - Review mode: strikethrough + annotation text - Sidecar JSON storage (no original text pollution) - Sidebar with mode filtering + change banner - Export annotations as Markdown / Copy as Prompt - Agent bridge: CLI one-click execution + custom command rules - Diff preview via jsdiff + Modal - Mobile bottom toolbar fallback
30 lines
545 B
JSON
30 lines
545 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"inlineSourceMap": true,
|
|
"inlineSources": true,
|
|
"module": "ESNext",
|
|
"target": "ES2020",
|
|
"allowJs": true,
|
|
"noImplicitAny": true,
|
|
"moduleResolution": "Node",
|
|
"importHelpers": true,
|
|
"isolatedModules": true,
|
|
"strictNullChecks": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"lib": [
|
|
"DOM",
|
|
"ES5",
|
|
"ES6",
|
|
"ES7",
|
|
"ES2020"
|
|
],
|
|
"paths": {
|
|
"@/*": ["src/*"]
|
|
}
|
|
},
|
|
"include": [
|
|
"src/**/*.ts"
|
|
]
|
|
}
|