-
Notifications
You must be signed in to change notification settings - Fork 35
/
tsconfig.base.json
42 lines (42 loc) · 2.02 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
{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"target": "es2015",
"module": "esnext",
"lib": ["es2017", "dom", "dom.iterable"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"baseUrl": ".",
"paths": {
"@components/*": ["apps/dotcms-ui/src/app/view/components/*"],
"@directives/*": ["apps/dotcms-ui/src/app/view/directives/*"],
"@dotcms/app/*": ["apps/dotcms-ui/src/app/*"],
"@dotcms/block-editor": ["libs/block-editor/src/public-api.ts"],
"@dotcms/dot-layout-grid": ["libs/dot-layout-grid/src/public_api.ts"],
"@dotcms/dot-rules": ["libs/dot-rules/src/public_api.ts"],
"@dotcms/dotcms": ["libs/dotcms/src/index.ts"],
"@dotcms/dotcms-field-elements": ["libs/dotcms-field-elements/src/index.ts"],
"@dotcms/dotcms-field-elements/loader": ["dist/libs/dotcms-field-elements/loader"],
"@dotcms/dotcms-js": ["libs/dotcms-js/src/public_api.ts"],
"@dotcms/dotcms-models": ["libs/dotcms-models/src/index.ts"],
"@dotcms/dotcms-webcomponents": ["libs/dotcms-webcomponents/src/index.ts"],
"@dotcms/dotcms-webcomponents/loader": ["dist/libs/dotcms-webcomponents/loader"],
"@dotcms/ui": ["libs/ui/src/index.ts"],
"@dotcms/utils": ["libs/utils/src/index.ts"],
"@models/*": ["apps/dotcms-ui/src/app/shared/models/*"],
"@pipes/*": ["apps/dotcms-ui/src/app/view/pipes/*"],
"@portlets/*": ["apps/dotcms-ui/src/app/portlets/*"],
"@services/*": ["apps/dotcms-ui/src/app/api/services/*"],
"@shared/*": ["apps/dotcms-ui/src/app/shared/*"],
"@tests/*": ["apps/dotcms-ui/src/app/test/*"]
}
},
"exclude": ["node_modules", "tmp"]
}