mirror of
https://github.com/denberek/obsidian-agent-fleet.git
synced 2026-07-22 07:47:06 +00:00
The Obsidian Community Plugins directory requires source-available plugins. This repo now contains the buildable source (src/, defaults/, build config) alongside the release artifacts. Also: manifest description no longer contains the word "Obsidian" (directory requirement).
17 lines
405 B
JSON
17 lines
405 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "ESNext",
|
|
"moduleResolution": "Bundler",
|
|
"lib": ["DOM", "ES2022"],
|
|
"strict": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"inlineSourceMap": true,
|
|
"inlineSources": true,
|
|
"types": ["node"],
|
|
"baseUrl": "."
|
|
},
|
|
"include": ["src/**/*.ts", "vitest.config.ts"]
|
|
}
|