railly_agentfiles/tsconfig.json
Railly 7306bddb0a feat: initial release - AI agent skills manager for Obsidian
Discover, organize, and edit AI coding agent skills across Claude Code,
Cursor, Codex, Windsurf, Copilot, and more from inside Obsidian.

- Multi-tool skill discovery (13 tools supported)
- Three-column view: sidebar, list, detail
- Real-time file watching with debounce
- YAML frontmatter parsing and metadata display
- Built-in editor with Cmd+S save
- Full-text search across all skills
- Token/char count estimation
- Real SVG logos from tryelements.dev registry
- Filter by tool, type, favorites, collections
2026-03-28 08:18:28 -05:00

17 lines
353 B
JSON

{
"compilerOptions": {
"baseUrl": ".",
"inlineSourceMap": true,
"inlineSources": true,
"module": "ESNext",
"target": "ES2022",
"allowJs": true,
"noImplicitAny": true,
"moduleResolution": "node",
"importHelpers": true,
"isolatedModules": true,
"strictNullChecks": true,
"lib": ["DOM", "ES2022"]
},
"include": ["src/**/*.ts"]
}