Files
obsidian_ollama/tsconfig.json
fegger 2d78882594 chore: move compiled output to dist
Update the plugin entrypoint and TypeScript output directory to use dist instead of writing generated JavaScript into src.

Remove previously checked-in compiled source files and add coverage for the Ollama client and tool executor.
2026-05-19 17:30:05 +02:00

21 lines
508 B
JSON
Executable File

{
"compilerOptions": {
"target": "ES2020",
"module": "commonjs",
"outDir": "./dist",
"rootDir": "./src",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"moduleResolution": "node",
"lib": ["ESNext", "DOM"],
"resolveJsonModule": true,
"declaration": true,
"declarationMap": true,
"sourceMap": true,
},
"include": ["src/**/*"],
"exclude": ["node_modules", "tests", "__mocks__", "dist"],
}