@smart-webcomponents-angular/scrollbar 15.0.2 → 19.0.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2020/scrollbar/smart.scrollbar.mjs +1 -1
- package/fesm2015/smart-webcomponents-angular-scrollbar.mjs.map +1 -1
- package/fesm2020/smart-webcomponents-angular-scrollbar.mjs.map +1 -1
- package/index.d.ts +1274 -425
- package/package.json +19 -19
- package/scrollbar/smart-webcomponents-angular-scrollbar.d.ts +1 -1
- package/source/modules/smart.scrollbar.js +2 -2
- package/source/smart.button.js +1 -1
- package/source/smart.element.js +2 -2
- package/source/smart.scrollbar.js +1 -1
- package/styles/font/smart-icons.eot +0 -0
- package/styles/font/smart-icons.svg +29 -1
- package/styles/font/smart-icons.ttf +0 -0
- package/styles/font/smart-icons.woff +0 -0
- package/styles/font/smart-icons.woff2 +0 -0
- package/styles/smart.base.css +2 -2
- package/styles/smart.common.css +1 -1
- package/styles/smart.scrollbar.css +1 -1
- package/demo/angular.json +0 -126
- package/demo/package.json +0 -52
- package/demo/src/app/app.component.css +0 -33
- package/demo/src/app/app.component.html +0 -128
- package/demo/src/assets/fonts.css +0 -13
- package/demo/src/assets/styles.css +0 -12
- package/demo/src/index.html +0 -42
- package/demo/src/tsconfig.app.json +0 -15
- package/demo/src/tsconfig.json +0 -23
- package/start.js +0 -5
package/demo/angular.json
DELETED
|
@@ -1,126 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
|
|
3
|
-
"version": 1,
|
|
4
|
-
"newProjectRoot": "projects",
|
|
5
|
-
"projects": {
|
|
6
|
-
"demo": {
|
|
7
|
-
"root": "",
|
|
8
|
-
"sourceRoot": "src",
|
|
9
|
-
"projectType": "application",
|
|
10
|
-
"prefix": "app",
|
|
11
|
-
"schematics": {},
|
|
12
|
-
"architect": {
|
|
13
|
-
"build": {
|
|
14
|
-
"builder": "@angular-devkit/build-angular:browser",
|
|
15
|
-
"options": {
|
|
16
|
-
"outputPath": "dist/demo",
|
|
17
|
-
"index": "src/index.html",
|
|
18
|
-
"main": "src/main.ts",
|
|
19
|
-
"polyfills": "src/polyfills.ts",
|
|
20
|
-
"tsConfig": "src/tsconfig.app.json",
|
|
21
|
-
"assets": [
|
|
22
|
-
"src/assets"
|
|
23
|
-
],
|
|
24
|
-
"styles": [
|
|
25
|
-
"./node_modules/@smart-webcomponents-angular/scrollbar/styles/smart.base.css",
|
|
26
|
-
"./node_modules/@smart-webcomponents-angular/scrollbar/styles/smart.scrollbar.css",
|
|
27
|
-
"./node_modules/@smart-webcomponents-angular/scrollbar/styles/smart.common.css",
|
|
28
|
-
"src/assets/fonts.css",
|
|
29
|
-
"src/assets/styles.css"
|
|
30
|
-
],
|
|
31
|
-
"scripts": []
|
|
32
|
-
},
|
|
33
|
-
"configurations": {
|
|
34
|
-
"production": {
|
|
35
|
-
"fileReplacements": [
|
|
36
|
-
{
|
|
37
|
-
"replace": "src/environments/environment.ts",
|
|
38
|
-
"with": "src/environments/environment.prod.ts"
|
|
39
|
-
}
|
|
40
|
-
],
|
|
41
|
-
"optimization": false,
|
|
42
|
-
"outputHashing": "all",
|
|
43
|
-
"sourceMap": false,
|
|
44
|
-
"extractCss": true,
|
|
45
|
-
"namedChunks": false,
|
|
46
|
-
"aot": true,
|
|
47
|
-
"extractLicenses": true,
|
|
48
|
-
"vendorChunk": false,
|
|
49
|
-
"buildOptimizer": false
|
|
50
|
-
}
|
|
51
|
-
}
|
|
52
|
-
},
|
|
53
|
-
"serve": {
|
|
54
|
-
"builder": "@angular-devkit/build-angular:dev-server",
|
|
55
|
-
"options": {
|
|
56
|
-
"browserTarget": "demo:build"
|
|
57
|
-
},
|
|
58
|
-
"configurations": {
|
|
59
|
-
"production": {
|
|
60
|
-
"browserTarget": "demo:build:production"
|
|
61
|
-
}
|
|
62
|
-
}
|
|
63
|
-
},
|
|
64
|
-
"extract-i18n": {
|
|
65
|
-
"builder": "@angular-devkit/build-angular:extract-i18n",
|
|
66
|
-
"options": {
|
|
67
|
-
"browserTarget": "demo:build"
|
|
68
|
-
}
|
|
69
|
-
},
|
|
70
|
-
"test": {
|
|
71
|
-
"builder": "@angular-devkit/build-angular:karma",
|
|
72
|
-
"options": {
|
|
73
|
-
"main": "src/test.ts",
|
|
74
|
-
"polyfills": "src/polyfills.ts",
|
|
75
|
-
"tsConfig": "src/tsconfig.spec.json",
|
|
76
|
-
"karmaConfig": "src/karma.conf.js",
|
|
77
|
-
"styles": [
|
|
78
|
-
"styles.css"
|
|
79
|
-
],
|
|
80
|
-
"scripts": [],
|
|
81
|
-
"assets": [
|
|
82
|
-
"src/favicon.ico",
|
|
83
|
-
"src/assets"
|
|
84
|
-
]
|
|
85
|
-
}
|
|
86
|
-
},
|
|
87
|
-
"lint": {
|
|
88
|
-
"builder": "@angular-devkit/build-angular:tslint",
|
|
89
|
-
"options": {
|
|
90
|
-
"tsConfig": [
|
|
91
|
-
"src/tsconfig.app.json",
|
|
92
|
-
"src/tsconfig.spec.json"
|
|
93
|
-
],
|
|
94
|
-
"exclude": [
|
|
95
|
-
"**/node_modules/**"
|
|
96
|
-
]
|
|
97
|
-
}
|
|
98
|
-
}
|
|
99
|
-
}
|
|
100
|
-
},
|
|
101
|
-
"demo-e2e": {
|
|
102
|
-
"root": "e2e/",
|
|
103
|
-
"projectType": "application",
|
|
104
|
-
"architect": {
|
|
105
|
-
"e2e": {
|
|
106
|
-
"builder": "@angular-devkit/build-angular:protractor",
|
|
107
|
-
"options": {
|
|
108
|
-
"protractorConfig": "e2e/protractor.conf.js",
|
|
109
|
-
"devServerTarget": "demo:serve"
|
|
110
|
-
}
|
|
111
|
-
},
|
|
112
|
-
"lint": {
|
|
113
|
-
"builder": "@angular-devkit/build-angular:tslint",
|
|
114
|
-
"options": {
|
|
115
|
-
"tsConfig": "e2e/tsconfig.e2e.json",
|
|
116
|
-
"exclude": [
|
|
117
|
-
"**/node_modules/**"
|
|
118
|
-
]
|
|
119
|
-
}
|
|
120
|
-
}
|
|
121
|
-
}
|
|
122
|
-
}
|
|
123
|
-
},
|
|
124
|
-
"defaultProject": "demo"
|
|
125
|
-
}
|
|
126
|
-
|
package/demo/package.json
DELETED
|
@@ -1,52 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "angular-scrollbar-overview",
|
|
3
|
-
"description": "Angular scrollbar overview example. This example demonstrates commercial components by jQWidgets(https://www.jqwidgets.com/license/)",
|
|
4
|
-
"version": "1.0.0",
|
|
5
|
-
"homepage": "https://www.htmlelements.com/",
|
|
6
|
-
"dependencies": {
|
|
7
|
-
"@angular/animations": "^11.2.3",
|
|
8
|
-
"@angular/elements": "^11.2.3",
|
|
9
|
-
"@angular/common": "^11.2.3",
|
|
10
|
-
"@angular/compiler": "^11.2.3",
|
|
11
|
-
"@angular/core": "^11.2.3",
|
|
12
|
-
"@angular/forms": "^11.2.3",
|
|
13
|
-
"@angular/platform-browser": "^11.2.3",
|
|
14
|
-
"@angular/platform-browser-dynamic": "^11.2.3",
|
|
15
|
-
"@angular/router": "^11.2.3",
|
|
16
|
-
"@types/jasmine": "^3.6.6",
|
|
17
|
-
"@types/jasminewd2": "^2.0.8",
|
|
18
|
-
"@types/node": "^14.14.31",
|
|
19
|
-
"core-js": "3.9.1",
|
|
20
|
-
"moment": "^2.29.1",
|
|
21
|
-
"@smart-webcomponents-angular/scrollbar": "9.2.22",
|
|
22
|
-
"rxjs": "^6.6.6",
|
|
23
|
-
"zone.js": "^0.11.4"
|
|
24
|
-
},
|
|
25
|
-
"scripts": {
|
|
26
|
-
"ng": "ng",
|
|
27
|
-
"start": "ng serve",
|
|
28
|
-
"build": "ng build",
|
|
29
|
-
"test": "ng test",
|
|
30
|
-
"lint": "ng lint",
|
|
31
|
-
"e2e": "ng e2e"
|
|
32
|
-
},
|
|
33
|
-
"devDependencies": {
|
|
34
|
-
"@angular-devkit/build-angular": "~0.901.1",
|
|
35
|
-
"@angular/cli": "~11.2.3",
|
|
36
|
-
"@angular/compiler-cli": "~11.2.3",
|
|
37
|
-
"@angular/language-service": "~11.2.3",
|
|
38
|
-
"@types/node": "^14.14.35",
|
|
39
|
-
"codelyzer": "^5.1.2",
|
|
40
|
-
"jasmine-core": "~3.5.0",
|
|
41
|
-
"jasmine-spec-reporter": "~4.2.1",
|
|
42
|
-
"karma": "~4.4.1",
|
|
43
|
-
"karma-chrome-launcher": "~3.1.0",
|
|
44
|
-
"karma-coverage-istanbul-reporter": "~2.1.0",
|
|
45
|
-
"karma-jasmine": "~3.0.1",
|
|
46
|
-
"karma-jasmine-html-reporter": "^1.4.2",
|
|
47
|
-
"protractor": "~5.4.3",
|
|
48
|
-
"ts-node": "~8.3.0",
|
|
49
|
-
"tslint": "~6.1.0",
|
|
50
|
-
"typescript": "~4.1.5"
|
|
51
|
-
}
|
|
52
|
-
}
|
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
/* fallback */
|
|
3
|
-
@font-face {
|
|
4
|
-
font-family: 'Material Icons';
|
|
5
|
-
font-style: normal;
|
|
6
|
-
font-weight: 400;
|
|
7
|
-
src: url(https://fonts.gstatic.com/s/materialicons/v31/2fcrYFNaTjcS6g4U3t-Y5ZjZjT5FdEJ140U2DJYC3mY.woff2) format('woff2');
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
.material-icons {
|
|
11
|
-
font-family: 'Material Icons';
|
|
12
|
-
font-weight: normal;
|
|
13
|
-
font-style: normal;
|
|
14
|
-
font-size: inherit;
|
|
15
|
-
line-height: 1;
|
|
16
|
-
letter-spacing: normal;
|
|
17
|
-
text-transform: none;
|
|
18
|
-
display: inline-block;
|
|
19
|
-
white-space: nowrap;
|
|
20
|
-
word-wrap: normal;
|
|
21
|
-
direction: ltr;
|
|
22
|
-
-webkit-font-feature-settings: 'liga';
|
|
23
|
-
-webkit-font-smoothing: antialiased;
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
smart-scroll-bar {
|
|
27
|
-
width: 250px;
|
|
28
|
-
height: 17px;
|
|
29
|
-
}
|
|
30
|
-
smart-scroll-bar[orientation="vertical"] {
|
|
31
|
-
width: 17px;
|
|
32
|
-
height: 250px;
|
|
33
|
-
}
|
|
@@ -1,128 +0,0 @@
|
|
|
1
|
-
<section>
|
|
2
|
-
<div>
|
|
3
|
-
<h2>Scrollbars let users to select values by moving the scrollbar thumb.</h2>
|
|
4
|
-
<div class="module">
|
|
5
|
-
<p>Scrollbars are ideal components for adjusting settings that reflect intensity
|
|
6
|
-
levels, such as volume, brightness, or color saturation.</p>
|
|
7
|
-
</div>
|
|
8
|
-
</div>
|
|
9
|
-
</section>
|
|
10
|
-
<section id="continuousSliders">
|
|
11
|
-
<h2>Continuous scrollbar</h2>
|
|
12
|
-
<div class="module">
|
|
13
|
-
<p>Use continuous scrollbars for subjective settings that do not require
|
|
14
|
-
a specific value for the user to make meaningful adjustments.</p>
|
|
15
|
-
</div>
|
|
16
|
-
<div class="module continuousSliderLight">
|
|
17
|
-
<table>
|
|
18
|
-
<tr>
|
|
19
|
-
<td>
|
|
20
|
-
<p>Normal</p>
|
|
21
|
-
</td>
|
|
22
|
-
<tr/>
|
|
23
|
-
<tr>
|
|
24
|
-
<td>
|
|
25
|
-
<smart-scroll-bar #scrollbar></smart-scroll-bar>
|
|
26
|
-
</td>
|
|
27
|
-
<tr/>
|
|
28
|
-
<tr>
|
|
29
|
-
<td>
|
|
30
|
-
<smart-scroll-bar #scrollbar2 max="100" value="50"></smart-scroll-bar>
|
|
31
|
-
</td>
|
|
32
|
-
<tr/>
|
|
33
|
-
<tr>
|
|
34
|
-
<td>
|
|
35
|
-
<smart-scroll-bar #scrollbar3 max="100" value="100"></smart-scroll-bar>
|
|
36
|
-
</td>
|
|
37
|
-
</tr>
|
|
38
|
-
<tr>
|
|
39
|
-
<td>
|
|
40
|
-
<p>Disabled</p>
|
|
41
|
-
</td>
|
|
42
|
-
<tr/>
|
|
43
|
-
<tr>
|
|
44
|
-
<td>
|
|
45
|
-
<smart-scroll-bar #scrollbar4 disabled max="100"></smart-scroll-bar>
|
|
46
|
-
</td>
|
|
47
|
-
<tr/>
|
|
48
|
-
<tr>
|
|
49
|
-
<td>
|
|
50
|
-
<smart-scroll-bar #scrollbar5 disabled max="100" value="50"></smart-scroll-bar>
|
|
51
|
-
</td>
|
|
52
|
-
<tr/>
|
|
53
|
-
<tr>
|
|
54
|
-
<td>
|
|
55
|
-
<smart-scroll-bar #scrollbar6 disabled max="100" value="100"></smart-scroll-bar>
|
|
56
|
-
</td>
|
|
57
|
-
</tr>
|
|
58
|
-
</table>
|
|
59
|
-
</div>
|
|
60
|
-
</section>
|
|
61
|
-
<section id="verticalSliders">
|
|
62
|
-
<h2>Orientation</h2>
|
|
63
|
-
<div class="module">
|
|
64
|
-
<p>smartScrollBar can be horizontal or vertical depending on the orientation
|
|
65
|
-
property.</p>
|
|
66
|
-
</div>
|
|
67
|
-
<div class="module">
|
|
68
|
-
<div>
|
|
69
|
-
<smart-scroll-bar #scrollbar7 max="100" value="50"></smart-scroll-bar>
|
|
70
|
-
<br/>
|
|
71
|
-
<br/>
|
|
72
|
-
<smart-scroll-bar #scrollbar8 orientation="vertical" max="100" value="75"></smart-scroll-bar>
|
|
73
|
-
</div>
|
|
74
|
-
<br/>
|
|
75
|
-
<p>Vertical scrollbars</p>
|
|
76
|
-
</div>
|
|
77
|
-
</section>
|
|
78
|
-
<section id="demoSliders">
|
|
79
|
-
<h2>Demo</h2>
|
|
80
|
-
<div class="module">
|
|
81
|
-
<p>ScrollBars are controls that are used for adjusting values precisely.</p>
|
|
82
|
-
</div>
|
|
83
|
-
<div class="module media-controls">
|
|
84
|
-
<div>
|
|
85
|
-
<h2>Volumes</h2>
|
|
86
|
-
<div>
|
|
87
|
-
<h3>Media volume</h3>
|
|
88
|
-
<div id="mediaControl" class="controls"> <i class="material-icons"></i>
|
|
89
|
-
<smart-scroll-bar #scrollbar9 id="mediaSlider"
|
|
90
|
-
max="100" value="25"></smart-scroll-bar>
|
|
91
|
-
</div>
|
|
92
|
-
</div>
|
|
93
|
-
<div>
|
|
94
|
-
<h3>Alarm volume</h3>
|
|
95
|
-
<div id="alarmControl" class="controls"> <i class="material-icons"></i>
|
|
96
|
-
<smart-scroll-bar #scrollbar10 id="alarmSlider"
|
|
97
|
-
max="100" value="50"></smart-scroll-bar>
|
|
98
|
-
</div>
|
|
99
|
-
</div>
|
|
100
|
-
<div>
|
|
101
|
-
<h3>Ring volume</h3>
|
|
102
|
-
<div id="ringControl" class="controls"> <i class="material-icons"></i>
|
|
103
|
-
<smart-scroll-bar #scrollbar11 id="volumeSlider"
|
|
104
|
-
max="100" value="75"></smart-scroll-bar>
|
|
105
|
-
</div>
|
|
106
|
-
</div>
|
|
107
|
-
</div>
|
|
108
|
-
</div>
|
|
109
|
-
<div class="module power-controls">
|
|
110
|
-
<div>
|
|
111
|
-
<h2>Battery Saver Mode</h2>
|
|
112
|
-
<div>
|
|
113
|
-
<h3>Low battery alert on <b id="lowBatteryAlert">15</b> %</h3>
|
|
114
|
-
<div id="mediaControl" class="controls"> <i class="material-icons"></i>
|
|
115
|
-
<smart-scroll-bar #scrollbar12 id="lowBatterySlider"
|
|
116
|
-
max="100" value="15" scale-type="integer"></smart-scroll-bar>
|
|
117
|
-
</div>
|
|
118
|
-
</div>
|
|
119
|
-
<div>
|
|
120
|
-
<h3>Power saver mode active on <b id="powerSaver">50</b>%</h3>
|
|
121
|
-
<div id="alarmControl" class="controls"> <i class="material-icons"></i>
|
|
122
|
-
<smart-scroll-bar #scrollbar13 id="powerSaverSlider"
|
|
123
|
-
max="100" value="50" scale-type="integer"></smart-scroll-bar>
|
|
124
|
-
</div>
|
|
125
|
-
</div>
|
|
126
|
-
</div>
|
|
127
|
-
</div>
|
|
128
|
-
</section>
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
@font-face {
|
|
2
|
-
font-family: "smart-icons";
|
|
3
|
-
src: url("https://raw.githubusercontent.com/HTMLElements/smart-webcomponents-angular/master/source/styles/font/smart-icons.eot");
|
|
4
|
-
src:
|
|
5
|
-
url("https://raw.githubusercontent.com/HTMLElements/smart-webcomponents-angular/master/source/styles/font/smart-icons.woff2")
|
|
6
|
-
format("woff2"),
|
|
7
|
-
url("https://raw.githubusercontent.com/HTMLElements/smart-webcomponents-angular/master/source/styles/font/smart-icons.woff")
|
|
8
|
-
format("woff"),
|
|
9
|
-
url("https://raw.githubusercontent.com/HTMLElements/smart-webcomponents-angular/master/source/styles/font/smart-icons.ttf")
|
|
10
|
-
format("truetype");
|
|
11
|
-
font-weight: normal;
|
|
12
|
-
font-style: normal;
|
|
13
|
-
}
|
package/demo/src/index.html
DELETED
|
@@ -1,42 +0,0 @@
|
|
|
1
|
-
<!doctype html>
|
|
2
|
-
<html lang="en">
|
|
3
|
-
<head>
|
|
4
|
-
<meta charset="utf-8">
|
|
5
|
-
<title>Angular Scrollbar Overview</title>
|
|
6
|
-
<base href="/">
|
|
7
|
-
<link rel="stylesheet" href="https://raw.githubusercontent.com/HTMLElements/smart-webcomponents-angular/master/source/styles/smart.default.css"/>
|
|
8
|
-
<style>
|
|
9
|
-
@font-face {
|
|
10
|
-
font-family: "smart-icons";
|
|
11
|
-
src: url("https://raw.githubusercontent.com/HTMLElements/smart-webcomponents-angular/master/source/styles/font/smart-icons.eot");
|
|
12
|
-
src:
|
|
13
|
-
url("https://raw.githubusercontent.com/HTMLElements/smart-webcomponents-angular/master/source/styles/font/smart-icons.woff2")
|
|
14
|
-
format("woff2"),
|
|
15
|
-
url("https://raw.githubusercontent.com/HTMLElements/smart-webcomponents-angular/master/source/styles/font/smart-icons.woff")
|
|
16
|
-
format("woff"),
|
|
17
|
-
url("https://raw.githubusercontent.com/HTMLElements/smart-webcomponents-angular/master/source/styles/font/smart-icons.ttf")
|
|
18
|
-
format("truetype");
|
|
19
|
-
font-weight: normal;
|
|
20
|
-
font-style: normal;
|
|
21
|
-
}
|
|
22
|
-
</style>
|
|
23
|
-
<script>
|
|
24
|
-
console.log('****************************************************************************************************************');
|
|
25
|
-
console.log('****************************************************************************************************************');
|
|
26
|
-
console.log('****************************************************************************************************************');
|
|
27
|
-
console.log('*jQWidgets License Key Not Found.');
|
|
28
|
-
console.log('*This is an EVALUATION only Version, it is NOT Licensed for software projects intended for PRODUCTION.');
|
|
29
|
-
console.log('*if you want to hide this message, please send an email to: sales@jqwidgets.com for a license.');
|
|
30
|
-
console.log('****************************************************************************************************************');
|
|
31
|
-
console.log('****************************************************************************************************************');
|
|
32
|
-
console.log('****************************************************************************************************************');
|
|
33
|
-
</script>
|
|
34
|
-
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
35
|
-
</head>
|
|
36
|
-
<body>
|
|
37
|
-
<app-root>Loading...</app-root>
|
|
38
|
-
<div style="position: absolute; bottom: 5px; right: 5px;">
|
|
39
|
-
<a href="https://www.jqwidgets.com/" alt="https://www.jqwidgets.com/"><img alt="https://www.jqwidgets.com/" title="https://www.jqwidgets.com/" src="https://www.jqwidgets.com/wp-content/design/i/logo-jqwidgets.png"/></a>
|
|
40
|
-
</div>
|
|
41
|
-
</body>
|
|
42
|
-
</html>
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
/* To learn more about this file see: https://angular.io/config/tsconfig. */
|
|
2
|
-
{
|
|
3
|
-
"extends": "./tsconfig.json",
|
|
4
|
-
"compilerOptions": {
|
|
5
|
-
"outDir": "./out-tsc/app",
|
|
6
|
-
"types": []
|
|
7
|
-
},
|
|
8
|
-
"files": [
|
|
9
|
-
"main.ts",
|
|
10
|
-
"polyfills.ts"
|
|
11
|
-
],
|
|
12
|
-
"include": [
|
|
13
|
-
"src/**/*.d.ts"
|
|
14
|
-
]
|
|
15
|
-
}
|
package/demo/src/tsconfig.json
DELETED
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
/* To learn more about this file see: https://angular.io/config/tsconfig. */
|
|
2
|
-
{
|
|
3
|
-
"compileOnSave": false,
|
|
4
|
-
"compilerOptions": {
|
|
5
|
-
"baseUrl": "./",
|
|
6
|
-
"outDir": "./dist/out-tsc",
|
|
7
|
-
"sourceMap": true,
|
|
8
|
-
"declaration": false,
|
|
9
|
-
"downlevelIteration": true,
|
|
10
|
-
"experimentalDecorators": true,
|
|
11
|
-
"moduleResolution": "node",
|
|
12
|
-
"importHelpers": true,
|
|
13
|
-
"target": "es2015",
|
|
14
|
-
"module": "es2020",
|
|
15
|
-
"lib": [
|
|
16
|
-
"es2018",
|
|
17
|
-
"dom"
|
|
18
|
-
]
|
|
19
|
-
},
|
|
20
|
-
"angularCompilerOptions": {
|
|
21
|
-
"enableI18nLegacyMessageIdFormat": false
|
|
22
|
-
}
|
|
23
|
-
}
|