-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtsconfig.json
50 lines (49 loc) · 2.22 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
48
49
50
/* To learn more about this file see: https://angular.io/config/tsconfig. */
{
"compileOnSave": false,
"compilerOptions": {
"baseUrl": "./",
"outDir": "./dist/out-tsc",
"forceConsistentCasingInFileNames": true,
"paths": {
"@enigmatry/entry-components":["libs/entry-components/public-api.ts"],
"@enigmatry/entry-components/common": ["libs/entry-components/common/public-api.ts"],
"@enigmatry/entry-components/dialog":["libs/entry-components/dialog/public-api.ts"],
"@enigmatry/entry-components/search-filter":["libs/entry-components/search-filter/public-api.ts"],
"@enigmatry/entry-components/spinner":["libs/entry-components/spinner/public-api.ts"],
"@enigmatry/entry-components/validation":["libs/entry-components/validation/public-api.ts"],
"@enigmatry/entry-components/button":["libs/entry-components/button/public-api.ts"],
"@enigmatry/entry-components/file-input":["libs/entry-components/file-input/public-api.ts"],
"@enigmatry/entry-components/permissions":["libs/entry-components/permissions/public-api.ts"],
"@enigmatry/entry-components/table": ["libs/entry-components/table/public-api.ts"],
"@enigmatry/entry-components/date-time-picker": ["libs/entry-components/date-time-picker/public-api.ts"],
"@enigmatry/entry-form": ["libs/entry-form/public-api.ts"],
"@enigmatry/entry-form/autocomplete": ["libs/entry-form/autocomplete/public-api.ts"],
"@enigmatry/entry-form/ckeditor": ["libs/entry-form/ckeditor/public-api.ts"],
"@enigmatry/entry-form/date-time-picker": ["libs/entry-form/date-time-picker/public-api.ts"]
},
"esModuleInterop": true,
"strict": false,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"sourceMap": true,
"declaration": false,
"experimentalDecorators": true,
"moduleResolution": "node",
"importHelpers": true,
"target": "ES2022",
"module": "ES2022",
"lib": [
"ES2022",
"dom"
],
"strictPropertyInitialization": false,
"useDefineForClassFields": false
},
"angularCompilerOptions": {
"enableI18nLegacyMessageIdFormat": false,
"strictInjectionParameters": true,
"strictInputAccessModifiers": true,
"strictTemplates": true
}
}