vesan_obsidian-table-beauti.../tsconfig.json
Vesa Vänskä 2503c08863
feat: Obsidian plugin to convert box-drawing tables to Markdown
Parses ASCII (+/-/|) and Unicode (┌─┬─┐│├┼┤└┴┘) table formats
from CLI tool output and converts them to properly formatted
Markdown pipe tables. Identifier-like cell values are auto-wrapped
in backticks.

Available via right-click context menu and command palette.
2026-04-26 19:16:31 +03:00

17 lines
389 B
JSON

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