{ "extends": "./tsconfig.base.json", "compilerOptions": { "outDir": "./dist", "rootDir": "./src", "jsx": "react-jsx", "declaration": true }, "include": ["src"], "exclude": [ "node_modules", "dist", // ---------- build / cache ---------- ".turbo/**/*", ".cache/**/*", ".vite/**/*", // ---------- 配置文件 ---------- "vite.config.ts", "*.config.ts", "*.config.js", "tsconfig.*.json", // ---------- 测试相关 ---------- "__tests__/**/*", "test/**/*", "tests/**/*", "**/*.test.ts", "**/*.test.tsx", "**/*.spec.ts", "**/*.spec.tsx", // ---------- Storybook ---------- ".storybook/**/*", "stories/**/*", // ---------- 示例 / 脚本 ---------- "example/**/*", "examples/**/*", "scripts/**/*", // ---------- 环境与静态资源 ---------- ".env", ".env.*", "public/**/*", // ---------- 文档 ---------- "docs/**/*", "README.md", "LICENSE" ] }