This commit is contained in:
2026-04-27 19:17:02 +08:00
parent 9947701fc4
commit 14828597db
88 changed files with 1897 additions and 274 deletions

View File

@@ -0,0 +1,21 @@
{
"compilerOptions": {
"module": "ESNext",
"moduleResolution": "bundler",
"jsx": "react-jsx",
"outDir": "./dist",
"rootDir": "./src",
"declaration": true,
"types": ["node", "react", "vite/client"]
},
"include": ["src"],
"exclude": [
"node_modules",
"dist",
"vite.config.ts",
"example/**/*",
"scripts/**/*",
".storybook/**/*",
"stories/**/*"
]
}