mirror of
https://github.com/grmartin/obsidian-toc-block-plugin.git
synced 2026-07-22 08:33:49 +00:00
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.
19 lines
467 B
JSON
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"]
|
|
}
|