mirror of
https://github.com/aaronsb/obsidian-mcp-plugin.git
synced 2026-07-22 16:40:32 +00:00
- 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.
36 lines
No EOL
684 B
JSON
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"
|
|
]
|
|
} |