soundslikeinfo_obsidian-cli.../tsconfig.json
Greg K. cfe5711e1c refactor: streamline plugin to focus on clipping catalog
This commit represents a focused version of a larger project,
stripped down to serve a single clear purpose: providing a catalog view
of clipped articles. Removed article summarization features to create
a lightweight, flexible tool that works with any clipping workflow.

Key changes:
- Simplified to core catalog features
- Works with any frontmatter URL property
- Compatible with all clipping methods
2024-12-09 11:07:30 -08:00

28 lines
No EOL
534 B
JSON

{
"compilerOptions": {
"baseUrl": "src",
"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"
],
"jsx": "react-jsx",
"allowSyntheticDefaultImports": true,
"esModuleInterop": true
},
"include": [
"**/*.ts",
"**/*.tsx"
]
}