bbd895d7c2
- 新增 shadcn canonical UI 源码、共享样式与组件导出 - 新增 /components 共享组件展示页及路由测试 - 补齐平台组件筛选、排序、上传预览和异步状态交互 - 同步网站与客户端构建别名、依赖和项目文档
45 lines
1.3 KiB
JSON
45 lines
1.3 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"useDefineForClassFields": false,
|
|
"module": "ESNext",
|
|
"lib": ["ES2022", "DOM", "DOM.Iterable"],
|
|
"skipLibCheck": true,
|
|
"moduleResolution": "bundler",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"moduleDetection": "force",
|
|
"allowJs": false,
|
|
"strict": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"jsx": "react-jsx",
|
|
"noEmit": true,
|
|
"types": ["vite/client"],
|
|
"baseUrl": "../..",
|
|
"paths": {
|
|
"@genarrative/image-canvas-core": [
|
|
"packages/image-canvas-core/src/index.ts"
|
|
],
|
|
"@genarrative/image-canvas-react": [
|
|
"packages/image-canvas-react/src/index.ts"
|
|
],
|
|
"@genarrative/shared": ["packages/shared/src/index.ts"],
|
|
"@genarrative/shared/components": [
|
|
"packages/shared/src/components/index.ts"
|
|
],
|
|
"@genarrative/shared/components/account": [
|
|
"packages/shared/src/components/account.ts"
|
|
],
|
|
"@genarrative/shared/components/ui": [
|
|
"packages/shared/src/components/ui/index.ts"
|
|
],
|
|
"@genarrative/shared/components/ui/*": [
|
|
"packages/shared/src/components/ui/*"
|
|
],
|
|
"@genarrative/shared/lib/*": ["packages/shared/src/lib/*"],
|
|
"@genarrative/shared/lib": ["packages/shared/src/lib/index.ts"]
|
|
}
|
|
},
|
|
"include": ["src", "vite.config.ts"]
|
|
}
|