-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.base.json
47 lines (47 loc) · 2.04 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"target": "es2015",
"module": "esnext",
"lib": ["es2020", "dom"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"baseUrl": ".",
"paths": {
"@sky-ui/breadcrumb": ["projects/breadcrumb/src/index.ts"],
"@sky-ui/button": ["projects/button/src/index.ts"],
"@sky-ui/calendar": ["projects/calendar/src/index.ts"],
"@sky-ui/checkbox": ["projects/checkbox/src/index.ts"],
"@sky-ui/code-input": ["projects/code-input/src/index.ts"],
"@sky-ui/color-input": ["projects/color-input/src/index.ts"],
"@sky-ui/color-picker": ["projects/color-picker/src/index.ts"],
"@sky-ui/core": ["projects/core/src/index.ts"],
"@sky-ui/date-adapter": ["projects/date-adapter/src/index.ts"],
"@sky-ui/date-input": ["projects/date-input/src/index.ts"],
"@sky-ui/dialog": ["projects/dialog/src/index.ts"],
"@sky-ui/drawer": ["projects/drawer/src/index.ts"],
"@sky-ui/field-error": ["projects/field-error/src/index.ts"],
"@sky-ui/form-error": ["projects/form-error/src/index.ts"],
"@sky-ui/icons": ["projects/icons/src/index.ts"],
"@sky-ui/input": ["projects/input/src/index.ts"],
"@sky-ui/loader": ["projects/loader/src/index.ts"],
"@sky-ui/paginator": ["projects/paginator/src/index.ts"],
"@sky-ui/primitive-input": ["projects/primitive-input/src/index.ts"],
"@sky-ui/select": ["projects/select/src/index.ts"],
"@sky-ui/selection": ["projects/selection/src/index.ts"],
"@sky-ui/slide-toggle": ["projects/slide-toggle/src/index.ts"],
"@sky-ui/sort": ["projects/sort/src/index.ts"],
"@sky-ui/table": ["projects/table/src/index.ts"],
"@sky-ui/theme": ["projects/theme/src/index.ts"],
"@sky-ui/toast": ["projects/toast/src/index.ts"]
}
},
"exclude": ["node_modules", "tmp"]
}