obsidian-media-db-sync/tsconfig.json
afiqzudinhadi 071c76862a rebrand: media-db-sync fork + fix bun test resolution
- manifest/manifest-beta/package.json → id media-db-sync, v0.1.0
- pluginName const → media-db-sync
- tsconfig: baseUrl (bun test needs it for packages/* paths) + ignoreDeprecations 6.0
- upstream tests were broken on clean checkout (module resolution) → 31/31 pass now
2026-07-29 19:18:59 +08:00

31 lines
718 B
JSON

{
"compilerOptions": {
"baseUrl": ".",
"ignoreDeprecations": "6.0",
"paths": {
"packages/*": ["./packages/*"],
"tests/*": ["./tests/*"]
},
"module": "ESNext",
"target": "ES2022",
"noEmit": true,
"allowJs": true,
"checkJs": true,
"noImplicitAny": true,
"strict": true,
"strictNullChecks": true,
"noImplicitReturns": true,
"moduleResolution": "bundler",
"importHelpers": true,
"isolatedModules": true,
"skipLibCheck": true,
"verbatimModuleSyntax": true,
"resolveJsonModule": true,
"moduleDetection": "force",
"sourceMap": true,
"lib": ["DOM", "ESNext"],
"allowSyntheticDefaultImports": true,
"types": ["vite/client"]
},
"include": ["packages/obsidian/**/*.ts"]
}