aaronsb_obsidian-mcp-plugin/tsconfig.json
Aaron Bockelie f19fecdb0f feat: Add linting, testing, and development documentation
- Add ESLint configuration with TypeScript support
- Set up Jest testing framework with Obsidian mocks
- Add basic MCP server tests
- Create DEVELOPMENT.md with Claude Code integration guide
- Update GitHub Action to include lint and test steps
- Use modern GitHub CLI for releases instead of deprecated actions

Testing and linting now part of CI/CD pipeline for quality assurance.
2025-06-27 11:18:36 -05:00

36 lines
No EOL
684 B
JSON

{
"compilerOptions": {
"baseUrl": ".",
"inlineSourceMap": true,
"inlineSources": true,
"module": "ESNext",
"target": "ES6",
"allowJs": true,
"noImplicitAny": true,
"moduleResolution": "node",
"importHelpers": true,
"declaration": true,
"declarationMap": true,
"lib": ["DOM", "ES6"],
"outDir": "dist",
"typeRoots": [
"node_modules/@types"
],
"types": [
"node",
"jest"
],
"strict": true,
"skipLibCheck": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true
},
"include": [
"src/**/*"
],
"exclude": [
"node_modules",
"dist",
"main.js"
]
}