ckelsoe_obsidian-plaud-impo.../tsconfig.json
Charles Kelsoe 06c3b485a3 Add tag mode settings, summary auto-close, and backwards-timestamp tolerance
Tags settings group: tag mode dropdown (none / custom / plaud / all, default plaud), custom tags field (default plaud-meeting), and a toggle that writes AI keywords excluded from tags: to a keywords: frontmatter property. Plaud's AI topic guesses were flooding vaults with 20-30 single-use tags per import batch.

Import dialog settings group: the post-import summary auto-closes after a fully successful run (default 20s, clamped 1-600). Any failure keeps it open. Clicking inside cancels the countdown; the Done button closes without flashing the cancelled text.

Transcript parser: a segment whose end_time lands before its start_time no longer fails the whole import; the end is clamped up to the start. Observed in a real capture on 2026-06-10.

tsconfig: lib extended to ES2017/ES2018 to match the code and esbuild target; include now lists **/*.d.ts explicitly.
2026-06-10 11:16:43 -04:00

27 lines
471 B
JSON

{
"compilerOptions": {
"baseUrl": ".",
"inlineSourceMap": true,
"inlineSources": true,
"module": "ESNext",
"target": "ES6",
"allowJs": true,
"noImplicitAny": true,
"moduleResolution": "node",
"importHelpers": true,
"isolatedModules": true,
"strictNullChecks": true,
"lib": [
"DOM",
"ES5",
"ES6",
"ES7",
"ES2017",
"ES2018"
]
},
"include": [
"**/*.ts",
"**/*.d.ts"
]
}