khabaroff-studio_obsidian-w.../plugin/tsconfig.json
Sergei Khabarov d11c957557 Initial commit: Obsidian Webhooks Server v2.0.0
Self-hosted webhook delivery system for Obsidian with real-time SSE and exactly-once delivery guarantee.

Tech stack: Go 1.24, PostgreSQL, Docker, Supabase

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2026-02-09 12:39:58 +04:00

30 lines
518 B
JSON

{
"compilerOptions": {
"baseUrl": ".",
"inlineSourceMap": true,
"inlineSources": true,
"module": "ESNext",
"target": "ES6",
"allowJs": true,
"noImplicitAny": true,
"moduleResolution": "node",
"importHelpers": true,
"isolatedModules": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"lib": [
"DOM",
"ES6"
]
},
"include": [
"**/*.ts"
],
"exclude": [
"node_modules",
"**/*.test.ts",
"main_failed.ts"
]
}