-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.base.json
32 lines (32 loc) · 1.37 KB
/
tsconfig.base.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
{
"compileOnSave": false,
"compilerOptions": {
"baseUrl": ".",
"moduleResolution": "bundler",
"target": "ES2020",
"module": "ESNext",
"lib": ["ES2020", "DOM", "DOM.Iterable"],
"skipLibCheck": true,
"paths": {
"@bootwind/alert": ["./packages/alert/src/index.ts"],
"@bootwind/avatar": ["packages/avatar/src/index.ts"],
"@bootwind/badges": ["packages/badges/src/index.ts"],
"@bootwind/breadcrumb": ["packages/breadcrumb/src/index.ts"],
"@bootwind/button": ["packages/button/src/index.ts"],
"@bootwind/card": ["./packages/card/src/index.ts"],
"@bootwind/common": ["./packages/common/src/index.ts"],
"@bootwind/core": ["packages/core/src/index.ts"],
"@bootwind/forms": ["packages/forms/src/index.ts"],
"@bootwind/modal": ["packages/modal/src/index.ts"],
"@bootwind/pagination": ["packages/pagination/src/index.ts"],
"@bootwind/slider": ["packages/slider/src/index.ts"],
"@bootwind/table": ["packages/table/src/index.ts"],
"@bootwind/title": ["./packages/title/src/index.ts"],
"@bootwind/toast": ["./packages/toast/src/index.ts"],
"@bootwind/tooltip": ["packages/tooltip/src/index.ts"],
"@bootwind/typography": ["packages/typography/src/index.ts"],
"@bootwind/ui": ["./packages/ui/src/index.ts"],
"@bootwind/tabs": ["packages/tabs/src/index.ts"]
}
}
}