{
  "compilerOptions": {
    "esModuleInterop": true,
    "jsx": "react-jsx",
    "jsxImportSource": "react",
    "declaration": true,
    // "declarationDir": "dist/types", 
    "skipLibCheck": true,
    "baseUrl": "./",
    "paths": {
      "@/*": ["src/*"]  // 如果有别名配置
    },
  },
  "exclude": [
    "node_modules",
    "dist",
    "**/node_modules/*",
    "**/dist/*"
  ],
}
