mirror of
https://github.com/bije0327/obsidian-stacktube.git
synced 2026-07-22 07:32:14 +00:00
- 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
19 lines
456 B
JSON
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"]
|
|
}
|