@Tenotoobsidian 插件开发请教 中发帖

有没有开发 obsidian 插件的佬友?我想使用 “obsidian-typings” 来补充官方未提供的类型和接口。我按照 Getting Started | Obsidian Typings 配置的 tsconfig.json 内容如下: 
{
"compilerOptions": {
"lib": ["DOM", "ES2021"],
"jsx": "preserve",
"target": "ES2021",
"noEmit": true,
"skipLibCheck": true,
"jsxImportSource": "vue",
"useDefineForClassFields": true,

/* modules */
"module": "ESNext",
"moduleDetecti...