-
Notifications
You must be signed in to change notification settings - Fork 455
/
tsconfig.json
47 lines (47 loc) · 2.58 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
38
39
40
41
42
43
44
45
46
47
{
"extends": "@taiga-ui/tsconfig",
"compilerOptions": {
"baseUrl": "./",
"outDir": "./dist",
"typeRoots": ["node_modules/@types"],
"paths": {
"@demo-cypress/*": ["projects/demo-cypress/cypress/*"],
"@demo-playwright/utils": ["projects/demo-playwright/utils/index"],
"@demo/components/*": ["projects/demo/src/components/*"],
"@demo/emulate/change-detection": ["projects/demo/src/emulate/change-detection-strategy.ts"],
"@demo/emulate/encapsulation": ["projects/demo/src/emulate/view-encapsulation.ts"],
"@demo/emulate/ng-zone-options": ["projects/demo/src/emulate/ng-zone-options.ts"],
"@demo/environments/*": ["projects/demo/src/environments/*"],
"@demo/root-package": ["package.json"],
"@demo/utils": ["projects/demo/src/utils/index"],
"@demo/routes": ["projects/demo/src/modules/app/demo-routes"],
"@taiga-ui/addon-charts": ["projects/addon-charts/index"],
"@taiga-ui/addon-charts/*": ["projects/addon-charts/*"],
"@taiga-ui/addon-commerce": ["projects/addon-commerce/index"],
"@taiga-ui/addon-commerce/*": ["projects/addon-commerce/*"],
"@taiga-ui/addon-doc": ["projects/addon-doc/index"],
"@taiga-ui/addon-doc/*": ["projects/addon-doc/*"],
"@taiga-ui/addon-mobile": ["projects/addon-mobile/index"],
"@taiga-ui/addon-mobile/*": ["projects/addon-mobile/*"],
"@taiga-ui/addon-table": ["projects/addon-table/index"],
"@taiga-ui/addon-table/*": ["projects/addon-table/*"],
"@taiga-ui/cdk": ["projects/cdk/index"],
"@taiga-ui/cdk/*": ["projects/cdk/*"],
"@taiga-ui/core": ["projects/core/index"],
"@taiga-ui/core/*": ["projects/core/*"],
"@taiga-ui/experimental": ["projects/experimental/index"],
"@taiga-ui/experimental/*": ["projects/experimental/*"],
"@taiga-ui/i18n": ["projects/i18n/index"],
"@taiga-ui/i18n/*": ["projects/i18n/*"],
"@taiga-ui/icons": ["projects/icons/index"],
"@taiga-ui/kit": ["projects/kit/index"],
"@taiga-ui/kit/*": ["projects/kit/*"],
"@taiga-ui/layout": ["projects/layout/index"],
"@taiga-ui/layout/*": ["projects/layout/*"],
"@taiga-ui/testing": ["projects/testing/index"],
"@taiga-ui/testing/*": ["projects/testing/*"],
"@taiga-ui/legacy": ["projects/legacy/index"],
"@taiga-ui/legacy/*": ["projects/legacy/*"]
}
}
}