forked from coryrylan/ngx-lite
-
Notifications
You must be signed in to change notification settings - Fork 1
/
tsconfig.json
87 lines (87 loc) · 2 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
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
{
"compileOnSave": false,
"compilerOptions": {
"baseUrl": "./",
"outDir": "./dist/out-tsc",
"forceConsistentCasingInFileNames": true,
"strict": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"sourceMap": true,
"declaration": false,
"downlevelIteration": true,
"experimentalDecorators": true,
"moduleResolution": "node",
"importHelpers": true,
"target": "es2020",
"module": "es2020",
"lib": [
"es2018",
"dom"
],
"paths": {
"@ngx-lite/util": [
"./dist/ngx-util"
],
"@ngx-lite/carbon-ad": [
"./dist/ngx-carbon-ad"
],
"@ngx-lite/code-example": [
"./dist/ngx-code-example"
],
"@ngx-lite/debounce-click": [
"./dist/ngx-debounce-click"
],
"@ngx-lite/eq": [
"./dist/ngx-eq"
],
"@ngx-lite/in-viewport": [
"./dist/ngx-in-viewport"
],
"@ngx-lite/input-datepicker": [
"./dist/ngx-input-datepicker"
],
"@ngx-lite/input-timepicker": [
"./dist/ngx-input-timepicker"
],
"@ngx-lite/input-range": [
"./dist/ngx-input-range"
],
"@ngx-lite/input-star-rating": [
"./dist/ngx-input-star-rating"
],
"@ngx-lite/input-switch": [
"./dist/ngx-input-switch"
],
"@ngx-lite/loaders": [
"./dist/ngx-loaders"
],
"@ngx-lite/input-tag": [
"./dist/ngx-input-tag"
],
"@ngx-lite/json-ld": [
"./dist/ngx-json-ld"
],
"@ngx-lite/modal": [
"./dist/ngx-modal"
],
"@ngx-lite/nav-drawer": [
"./dist/ngx-nav-drawer"
],
"@ngx-lite/progress": [
"./dist/ngx-progress"
],
"@ngx-lite/tabs": [
"./dist/ngx-tabs"
],
"@ngx-lite/menus": [
"./dist/ngx-menus"
]
}
},
"angularCompilerOptions": {
"strictInjectionParameters": true,
"strictInputAccessModifiers": true,
"strictTemplates": true
}
}