meganjjzhang_Promptuary/tsconfig.json
megan-blue 5a3297e959 feat: initial commit - MultiAIEdit v0.1
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
2026-06-14 16:56:49 +08:00

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