forked from lobehub/lobe-ui
-
Notifications
You must be signed in to change notification settings - Fork 1
/
tsconfig.json
37 lines (37 loc) · 1.19 KB
/
tsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"compilerOptions": {
"baseUrl": ".",
"declaration": true,
"downlevelIteration": true,
"esModuleInterop": true,
"jsx": "react-jsx",
"lib": ["dom", "dom.iterable", "esnext"],
"module": "esnext",
"moduleResolution": "node",
"paths": {
"@@/*": [".dumi/tmp/*"],
"@/*": ["src/*"],
"@bentwnghk/ui": ["src"],
"@bentwnghk/ui/*": ["src/*"],
"@bentwnghk/ui/mdx": ["src/mdx"],
"@bentwnghk/ui/mdx/*": ["src/mdx/*"],
"@bentwnghk/ui/brand": ["src/brand"],
"@bentwnghk/ui/brand/*": ["src/brand/*"],
"@bentwnghk/ui/mobile": ["src/mobile"],
"@bentwnghk/ui/mobile/*": ["src/mobile/*"],
"@bentwnghk/ui/chat": ["src/chat"],
"@bentwnghk/ui/chat/*": ["src/chat/*"],
"@bentwnghk/ui/storybook": ["src/storybook"],
"@bentwnghk/ui/storybook/*": ["src/storybook/*"],
"@bentwnghk/ui/awesome": ["src/awesome"],
"@bentwnghk/ui/awesome/*": ["src/awesome/*"]
},
"resolveJsonModule": true,
"skipLibCheck": true,
"strict": true,
"target": "es6",
"types": ["vitest/globals"]
},
"exclude": ["mdx.d.ts", "brand.d.ts"],
"include": ["src", "docs", "tests", ".dumirc.ts", ".fatherrc.ts"]
}