bije0327_obsidian-stacktube/tsconfig.json
BUMJIN d0b7b980fa feat: StackTube Obsidian plugin v0.1.0 (Stage 1 MVP)
- Pull-based sync client for StackTube /api/v1/notes (Bearer API key)
- Settings tab (key, baseUrl, folder, interval, test connection)
- Manual + interval sync, video_id dedup, YAML frontmatter, watermark resume
- E2E harness (mock server + fake vault), 15/15 scenarios pass
2026-06-03 12:11:49 +00:00

19 lines
456 B
JSON

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