-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.base.json
63 lines (63 loc) · 3 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"baseUrl": ".",
"outDir": "./dist/out-tsc",
"downlevelIteration": true,
"module": "esnext",
"target": "es2020",
"sourceMap": true,
"inlineSources": true,
"allowJs": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"resolveJsonModule": true,
"newLine": "lf",
"typeRoots": ["node_modules/@types"],
"types": ["jasmine", "node", "jasminewd2"],
"lib": ["es2020", "dom", "DOM.Iterable", "esnext.array", "esnext.string", "esnext.asynciterable"],
"importHelpers": true,
"noUnusedLocals": true,
"noImplicitReturns": true,
"removeComments": false,
"paths": {
"@contezza/common": ["libs/common/src/index.ts"],
"@contezza/core/context": ["libs/core/context/src/index.ts"],
"@contezza/core/dialogs": ["libs/core/dialogs/src/index.ts"],
"@contezza/core/directives": ["libs/core/directives/src/index.ts"],
"@contezza/core/extensions": ["libs/core/extensions/src/index.ts"],
"@contezza/core/guards": ["libs/core/guards/src"],
"@contezza/core/pipes": ["libs/core/pipes/src/index.ts"],
"@contezza/core/popover": ["libs/core/popover/src/index.ts"],
"@contezza/core/property-titles": ["libs/core/property-titles/src"],
"@contezza/core/services": ["libs/core/services/src/index.ts"],
"@contezza/core/stores": ["libs/core/stores/src/index.ts"],
"@contezza/core/utils": ["libs/core/utils/src/index.ts"],
"@contezza/dynamic-forms": ["libs/dynamic-forms/src/index.ts"],
"@contezza/dynamic-forms/dialog": ["libs/dynamic-forms/dialog/src/index.ts"],
"@contezza/dynamic-forms/shared": ["libs/dynamic-forms/shared/src/index.ts"],
"@contezza/js-console": ["libs/mgmt/js-console/src/index.ts"],
"@contezza/js-console/shared": ["libs/mgmt/js-console/shared/src/index.ts"],
"@contezza/node-browser": ["libs/mgmt/node-browser/src/index.ts"],
"@contezza/node-browser/shared": ["libs/mgmt/node-browser/shared/src/index.ts"],
"@contezza/people-group-picker": ["libs/people-group-picker/src/index.ts"],
"@contezza/search/form": ["libs/search/form/src/index.ts"],
"@contezza/third-party/gridster": ["libs/third-party/gridster/src/index.ts"],
"@contezza/third-party/monaco": ["libs/third-party/monaco/src/index.ts"]
}
},
"exclude": ["node_modules", "tmp"],
"angularCompilerOptions": {
"preserveWhitespaces": false,
"fullTemplateTypeCheck": true,
"strictInjectionParameters": true,
"strictTemplates": true
}
}