-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
124 lines (123 loc) · 3.77 KB
/
tsconfig.json
File metadata and controls
124 lines (123 loc) · 3.77 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
/* To learn more about Typescript configuration file: https://www.typescriptlang.org/docs/handbook/tsconfig-json.html. */
/* To learn more about Angular compiler options: https://angular.dev/reference/configs/angular-compiler-options. */
{
"compileOnSave": false,
"compilerOptions": {
"strict": false, //default is true karavi change
"noImplicitOverride": false, //default is true karavi change
"noPropertyAccessFromIndexSignature": false, //default is true //if true settings.username This would need to be settings["username"];
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"skipLibCheck": true,
"isolatedModules": true,
"experimentalDecorators": true,
"importHelpers": true,
"target": "ES2022",
"module": "ES2022",
"moduleResolution": "bundler",
"lib": ["ES2022", "dom"],
/*karavi add*/
"baseUrl": "./",
"esModuleInterop": true,
"sourceMap": true,
"declaration": false,
"allowJs": true,
"checkJs": false,
"strictFunctionTypes": true,
"forceConsistentCasingInFileNames": true,
"strictPropertyInitialization": false,
"useDefineForClassFields": false,
/*karavi add*/
"paths": {
"ngx-ntk-cron-editor": ["./dist/ngx-ntk-cron-editor"],
"ngx-ntk-file-picker": ["./dist/ngx-ntk-file-picker"],
"ngx-ntk-icon-picker": ["./dist/ngx-ntk-icon-picker"],
"ngx-ntk-mat-color-picker": ["./dist/ngx-ntk-mat-color-picker"],
"ngx-ntk-query-builder": ["./dist/ngx-ntk-query-builder"],
"ngx-ntk-smart-module": ["./dist/ngx-ntk-smart-module"],
"ntk-cms-api": ["./dist/ntk-cms-api"],
"ntk-cms-filemanager": ["./dist/ntk-cms-filemanager"],
"ntk-cms-fileuploader": ["./dist/ntk-cms-fileuploader"]
}
},
"angularCompilerOptions": {
"enableI18nLegacyMessageIdFormat": false,
"strictInjectionParameters": true,
"strictInputAccessModifiers": true,
"typeCheckHostBindings": true,
"strictTemplates": true,
/*karavi add*/
"fullTemplateTypeCheck": true,
"strictAttributeTypes": false,
"strictSafeNavigationTypes": false,
"strictDomLocalRefTypes": false,
"strictOutputEventTypes": false,
"strictDomEventTypes": false,
"strictLiteralTypes": false,
"strictNullChecks": false
/*karavi add*/
},
"files": [],
"references": [
{
"path": "./tsconfig.app.json"
},
{
"path": "./tsconfig.spec.json"
},
{
"path": "./projects/ntk-cms-api/tsconfig.lib.json"
},
{
"path": "./projects/ntk-cms-api/tsconfig.spec.json"
},
{
"path": "./projects/ntk-cms-filemanager/tsconfig.lib.json"
},
{
"path": "./projects/ntk-cms-filemanager/tsconfig.spec.json"
},
{
"path": "./projects/ntk-cms-fileuploader/tsconfig.lib.json"
},
{
"path": "./projects/ntk-cms-fileuploader/tsconfig.spec.json"
},
{
"path": "./projects/ngx-ntk-smart-module/tsconfig.lib.json"
},
{
"path": "./projects/ngx-ntk-smart-module/tsconfig.spec.json"
},
{
"path": "./projects/ngx-ntk-query-builder/tsconfig.lib.json"
},
{
"path": "./projects/ngx-ntk-query-builder/tsconfig.spec.json"
},
{
"path": "./projects/ngx-ntk-cron-editor/tsconfig.lib.json"
},
{
"path": "./projects/ngx-ntk-cron-editor/tsconfig.spec.json"
},
{
"path": "./projects/ngx-ntk-mat-color-picker/tsconfig.lib.json"
},
{
"path": "./projects/ngx-ntk-mat-color-picker/tsconfig.spec.json"
},
{
"path": "./projects/ngx-ntk-file-picker/tsconfig.lib.json"
},
{
"path": "./projects/ngx-ntk-file-picker/tsconfig.spec.json"
},
{
"path": "./projects/ngx-ntk-icon-picker/tsconfig.lib.json"
},
{
"path": "./projects/ngx-ntk-icon-picker/tsconfig.spec.json"
}
]
}