Skip to content

Commit f0020a8

Browse files
committed
Feat: v1_complate
1 parent d1cbcf0 commit f0020a8

File tree

2 files changed

+10
-7
lines changed

2 files changed

+10
-7
lines changed

src/basic-ui/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ export * from "./miniButton";
33
export * from "./miniImage";
44
export * from "./miniInput";
55
export * from "./miniRadiaChart";
6-
export * from "./miniTextarea";
6+
export * from "./miniTextarea";

tsconfig.json

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,17 @@
11
{
22
"compilerOptions": {
3-
"target": "ESNext",
43
"module": "ESNext",
4+
"moduleResolution": "bundler",
55
"jsx": "react-jsx",
6+
"target": "ESNext",
67
"declaration": true,
78
"esModuleInterop": true,
8-
"skipLibCheck": true,
9-
"moduleResolution": "node",
9+
"allowSyntheticDefaultImports": true,
1010
"strict": true,
11-
"outDir": "dist"
11+
"skipLibCheck": true,
12+
"outDir": "dist",
13+
"lib": ["DOM", "ESNext"]
1214
},
13-
"include": ["src"]
14-
}
15+
"include": ["src/**/*"],
16+
"exclude": ["node_modules", "dist"]
17+
}

0 commit comments

Comments
 (0)