-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathtsconfig.json
More file actions
74 lines (74 loc) · 3.88 KB
/
tsconfig.json
File metadata and controls
74 lines (74 loc) · 3.88 KB
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"compileOnSave": false,
"compilerOptions": {
"outDir": "./dist/out-tsc",
"strict": true,
"noImplicitOverride": true,
"noPropertyAccessFromIndexSignature": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"skipLibCheck": true,
"isolatedModules": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"moduleResolution": "bundler",
"importHelpers": true,
"target": "ES2022",
"module": "ES2022",
"paths": {
"@sim/file": ["./src/libs/sim/file/index.ts"],
"@sim/event-calendar": ["./src/libs/sim/event-calendar/index.ts"],
"@spartan-ng/helm/dropdown-menu": ["./src/libs/ui/dropdown-menu/src/index.ts"],
"@spartan-ng/helm/accordion": ["./src/libs/ui/accordion/src/index.ts"],
"@spartan-ng/helm/utils": ["./src/libs/ui/utils/src/index.ts"],
"@spartan-ng/helm/icon": ["./src/libs/ui/icon/src/index.ts"],
"@spartan-ng/helm/alert": ["./src/libs/ui/alert/src/index.ts"],
"@spartan-ng/helm/aspect-ratio": ["./src/libs/ui/aspect-ratio/src/index.ts"],
"@spartan-ng/helm/avatar": ["./src/libs/ui/avatar/src/index.ts"],
"@spartan-ng/helm/badge": ["./src/libs/ui/badge/src/index.ts"],
"@spartan-ng/helm/breadcrumb": ["./src/libs/ui/breadcrumb/src/index.ts"],
"@spartan-ng/helm/button": ["./src/libs/ui/button/src/index.ts"],
"@spartan-ng/helm/button-group": ["./src/libs/ui/button-group/src/index.ts"],
"@spartan-ng/helm/separator": ["./src/libs/ui/separator/src/index.ts"],
"@spartan-ng/helm/calendar": ["./src/libs/ui/calendar/src/index.ts"],
"@spartan-ng/helm/card": ["./src/libs/ui/card/src/index.ts"],
"@spartan-ng/helm/checkbox": ["./src/libs/ui/checkbox/src/index.ts"],
"@spartan-ng/helm/empty": ["./src/libs/ui/empty/src/index.ts"],
"@spartan-ng/helm/form-field": ["./src/libs/ui/form-field/src/index.ts"],
"@spartan-ng/helm/input": ["./src/libs/ui/input/src/index.ts"],
"@spartan-ng/helm/input-otp": ["./src/libs/ui/input-otp/src/index.ts"],
"@spartan-ng/helm/label": ["./src/libs/ui/label/src/index.ts"],
"@spartan-ng/helm/progress": ["./src/libs/ui/progress/src/index.ts"],
"@spartan-ng/helm/radio-group": ["./src/libs/ui/radio-group/src/index.ts"],
"@spartan-ng/helm/scroll-area": ["./src/libs/ui/scroll-area/src/index.ts"],
"@spartan-ng/helm/select": ["./src/libs/ui/select/src/index.ts"],
"@spartan-ng/helm/slider": ["./src/libs/ui/slider/src/index.ts"],
"@spartan-ng/helm/spinner": ["./src/libs/ui/spinner/src/index.ts"],
"@spartan-ng/helm/switch": ["./src/libs/ui/switch/src/index.ts"],
"@spartan-ng/helm/tabs": ["./src/libs/ui/tabs/src/index.ts"],
"@spartan-ng/helm/tooltip": ["./src/libs/ui/tooltip/src/index.ts"],
"@spartan-ng/helm/sheet": ["./src/libs/ui/sheet/src/index.ts"],
"@spartan-ng/helm/toggle": ["./src/libs/ui/toggle/src/index.ts"],
"@spartan-ng/helm/toggle-group": ["./src/libs/ui/toggle-group/src/index.ts"],
"@spartan-ng/helm/pagination": ["./src/libs/ui/pagination/src/index.ts"],
"@spartan-ng/helm/resizable": ["./src/libs/ui/resizable/src/index.ts"],
"@spartan-ng/helm/input-group": ["./src/libs/ui/input-group/src/index.ts"],
"@spartan-ng/helm/textarea": ["./src/libs/ui/textarea/src/index.ts"],
"@spartan-ng/helm/command": ["./src/libs/ui/command/src/index.ts"],
"@spartan-ng/helm/field": ["./src/libs/ui/field/src/index.ts"],
"@spartan-ng/helm/popover": ["./src/libs/ui/popover/src/index.ts"],
"@spartan-ng/helm/date-picker": ["./src/libs/ui/date-picker/src/index.ts"],
"@spartan-ng/helm/dialog": ["./src/libs/ui/dialog/src/index.ts"],
"@spartan-ng/helm/item": ["./src/libs/ui/item/src/index.ts"],
"@spartan-ng/helm/table": ["./src/libs/ui/table/src/index.ts"],
"@spartan-ng/helm/native-select": ["./src/libs/ui/native-select/src/index.ts"],
"@/*": ["./src/*"]
}
},
"angularCompilerOptions": {
"enableI18nLegacyMessageIdFormat": false,
"strictInjectionParameters": true,
"strictInputAccessModifiers": true,
"strictTemplates": true
}
}