Add initial API documentation for Linsa API endpoints to docs/api.md

This commit is contained in:
Nikita
2025-12-28 11:45:07 -08:00
parent 3a2c78198a
commit c073fe6ee0
32 changed files with 4291 additions and 57 deletions

View File

@@ -0,0 +1,29 @@
{
"include": [
"src/**/*.ts",
"src/**/*.tsx",
"electron.vite.config.ts"
],
"compilerOptions": {
"target": "ES2022",
"module": "ESNext",
"jsx": "react-jsx",
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"verbatimModuleSyntax": false,
"lib": ["ES2022", "DOM"],
"types": ["node", "vite/client"],
"noEmit": true,
"strict": true,
"skipLibCheck": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true,
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"],
"@shared/*": ["./src/shared/*"],
"@renderer/*": ["./src/renderer/*"]
}
}
}