grmartin_obsidian-toc-block.../tsconfig.json
Glenn R. Martin ac2d1a595a Initial commit: TOC Block plugin
Bootstraps from the official Obsidian sample plugin template and implements Typora-style [TOC] tag rendering: configurable marker/regex detection, per-mode display (links/hidden) across Live Preview, Reading View, and PDF export, insert command + context menu item, adn live sync with the metadata cache as headings change.
2026-07-18 15:06:53 -04:00

19 lines
467 B
JSON

{
"compilerOptions": {
"inlineSourceMap": true,
"inlineSources": true,
"module": "ESNext",
"target": "ES2021",
"strict": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"noUncheckedIndexedAccess": true,
"moduleResolution": "node",
"isolatedModules": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"allowSyntheticDefaultImports": true,
"lib": ["ES2021", "DOM"]
},
"include": ["src/**/*.ts"]
}