mirror of
https://github.com/khabaroff-studio/obsidian-webhooks-server.git
synced 2026-07-22 07:16:00 +00:00
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>
30 lines
518 B
JSON
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"
|
|
]
|
|
}
|