{
  "compilerOptions": {
    "target": "ES5",
    "module": "ES6",
    "lib": ["ES2015", "DOM"],  // ✅ 添加此行
    "declaration": true,
    "outDir": "./dist",
    "strict": true,
    // 其他配置 ...
    "moduleResolution": "node",
    "esModuleInterop": true,
    "allowSyntheticDefaultImports": true
  },
  "include": ["src"]
}
