forked from myBadges-org/badgr-ui
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathtsconfig.json
More file actions
43 lines (43 loc) · 2.04 KB
/
tsconfig.json
File metadata and controls
43 lines (43 loc) · 2.04 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
{
"compileOnSave": false,
"compilerOptions": {
"esModuleInterop": true,
"importHelpers": true,
"outDir": "./dist/out-tsc",
"sourceMap": true,
"declaration": false,
"moduleResolution": "bundler",
"experimentalDecorators": true,
"noImplicitAny": false,
"target": "ES2022",
"types": ["node"],
"typeRoots": ["node_modules/@types"],
"lib": ["dom", "es2022"],
"module": "es2022",
"baseUrl": "./",
"useDefineForClassFields": false,
"resolveJsonModule": true,
"paths": {
"@spartan-ng/helm/checkbox": ["./src/app/components/spartan/ui-checkbox-helm/src/index.ts"],
"@spartan-ng/helm/dialog": ["./src/app/components/spartan/ui-dialog-helm/src/index.ts"],
"@spartan-ng/helm/form-field": ["./src/app/components/spartan/ui-form-field-helm/src/index.ts"],
"@spartan-ng/helm/icon": ["./src/app/components/spartan/ui-icon-helm/src/index.ts"],
"@spartan-ng/helm/input": ["./src/app/components/spartan/ui-input-helm/src/index.ts"],
"@spartan-ng/helm/label": ["./src/app/components/spartan/ui-label-helm/src/index.ts"],
"@spartan-ng/helm/menu": ["./src/app/components/spartan/ui-menu-helm/src/index.ts"],
"@spartan-ng/helm/pagination": ["./src/app/components/spartan/ui-pagination-helm/src/index.ts"],
"@spartan-ng/helm/progress": ["./src/app/components/spartan/ui-progress-helm/src/index.ts"],
"@spartan-ng/helm/select": ["./src/app/components/spartan/ui-select-helm/src/index.ts"],
"@spartan-ng/helm/separator": ["./src/app/components/spartan/ui-separator-helm/src/index.ts"],
"@spartan-ng/helm/spinner": ["./src/app/components/spartan/ui-spinner-helm/src/index.ts"],
"@spartan-ng/helm/switch": ["./src/app/components/spartan/ui-switch-helm/src/index.ts"],
"@spartan-ng/helm/table": ["./src/app/components/spartan/ui-table-helm/src/index.ts"],
"@spartan-ng/helm/tabs": ["./src/app/components/spartan/ui-tabs-helm/src/index.ts"],
"@spartan-ng/helm/typography": ["./src/app/components/spartan/ui-typography-helm/src/index.ts"],
"~/*": ["./src/app/*"]
}
},
"angularCompilerOptions": {
"strictTemplates": true
}
}