notesynchelper_china-speedup/tsconfig.json
claude 7426be7c80 feat: 插件加速商店 plugin-market-cn 首版
国内加速的 Obsidian 社区插件商店:
- 商店浏览/搜索/一键安装(仿原生 community browser)
- relay-1..5 自动选最快节点(raceProbe + 缓存,relay-3..5 服务端预留)
- 黑名单制 + 特殊导入制(服务端 marketplace-config.json 热更新)
- obsidian:// 调起链接(白名单只接产品自有域,防恶意安装)
- 插件自更新(临时文件→校验→备份→原子替换)
- 48 个单测全绿,tsc 干净,esbuild 出包

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-05-30 17:01:48 +08:00

19 lines
421 B
JSON

{
"compilerOptions": {
"baseUrl": ".",
"inlineSourceMap": true,
"inlineSources": true,
"module": "ESNext",
"target": "ES2021",
"allowJs": true,
"noImplicitAny": true,
"moduleResolution": "node",
"importHelpers": true,
"isolatedModules": true,
"strictNullChecks": true,
"esModuleInterop": true,
"skipLibCheck": true,
"lib": ["ES2021", "DOM"]
},
"include": ["src/**/*.ts", "tests/**/*.ts"]
}