@linzjs/style 3.16.0 → 4.0.0
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/{.eslintrc.js → .eslintrc.cjs} +6 -1
- package/{.prettierrc.js → .prettierrc.cjs} +1 -0
- package/CHANGELOG.md +13 -142
- package/README.md +15 -10
- package/build/src/__test__/class.d.ts +0 -1
- package/build/src/__test__/class.js +4 -9
- package/build/src/__test__/class.js.map +1 -0
- package/build/src/__test__/class.test.d.ts +0 -1
- package/build/src/__test__/class.test.js +4 -9
- package/build/src/__test__/class.test.js.map +1 -0
- package/build/src/install.d.ts +0 -1
- package/build/src/install.js +10 -34
- package/build/src/install.js.map +1 -0
- package/build/tsconfig.tsbuildinfo +1 -1
- package/config/eslintrc.cjs +1 -0
- package/config/prettierrc.cjs +1 -0
- package/config/tsconfig.json +0 -1
- package/linz-style-install.mjs +3 -0
- package/package.json +8 -7
- package/tsconfig.base.json +28 -20
- package/tsconfig.json +3 -3
- package/build/src/__test__/class.d.ts.map +0 -1
- package/build/src/__test__/class.test.d.ts.map +0 -1
- package/build/src/install.d.ts.map +0 -1
- package/config/eslintrc.js +0 -3
- package/config/prettierrc.js +0 -3
- package/linz-style-install +0 -3
|
@@ -18,7 +18,12 @@ module.exports = {
|
|
|
18
18
|
rules: {},
|
|
19
19
|
parser: '@typescript-eslint/parser',
|
|
20
20
|
},
|
|
21
|
-
|
|
21
|
+
/** Lint/format mjs files */
|
|
22
|
+
{
|
|
23
|
+
files: ['**/*.mjs'],
|
|
24
|
+
extends: ['plugin:@typescript-eslint/recommended', 'plugin:prettier/recommended'],
|
|
25
|
+
parser: '@typescript-eslint/parser',
|
|
26
|
+
},
|
|
22
27
|
{
|
|
23
28
|
/** Overrides for typescript */
|
|
24
29
|
files: ['**/*.ts', '**/*.tsx'],
|
package/CHANGELOG.md
CHANGED
|
@@ -1,145 +1,3 @@
|
|
|
1
|
-
<a name="3.9.0"></a>
|
|
2
|
-
# [3.9.0](https://github.com/linz/style-js/compare/v3.8.0...v3.9.0) (2022-07-18)
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
### Features
|
|
6
|
-
|
|
7
|
-
* **deps:** bump [@typescript-eslint](https://github.com/typescript-eslint)/eslint-plugin from 5.23.0 to 5.30.6 ([#485](https://github.com/linz/style-js/issues/485)) ([92d3ccb](https://github.com/linz/style-js/commit/92d3ccb))
|
|
8
|
-
* **deps:** bump [@typescript-eslint](https://github.com/typescript-eslint)/parser from 5.23.0 to 5.30.6 ([#484](https://github.com/linz/style-js/issues/484)) ([8e9657e](https://github.com/linz/style-js/commit/8e9657e))
|
|
9
|
-
* **deps:** bump eslint from 8.15.0 to 8.20.0 ([#487](https://github.com/linz/style-js/issues/487)) ([8ad4706](https://github.com/linz/style-js/commit/8ad4706))
|
|
10
|
-
* **deps:** bump eslint-plugin-prettier from 4.0.0 to 4.2.1 ([#476](https://github.com/linz/style-js/issues/476)) ([484fe82](https://github.com/linz/style-js/commit/484fe82))
|
|
11
|
-
* **deps:** bump prettier from 2.6.2 to 2.7.1 ([#468](https://github.com/linz/style-js/issues/468)) ([23738ea](https://github.com/linz/style-js/commit/23738ea))
|
|
12
|
-
* **deps:** bump typescript from 4.6.4 to 4.7.4 ([#469](https://github.com/linz/style-js/issues/469)) ([b77e1dc](https://github.com/linz/style-js/commit/b77e1dc))
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
<a name="3.8.0"></a>
|
|
17
|
-
# [3.8.0](https://github.com/linz/style-js/compare/v3.7.0...v3.8.0) (2022-05-16)
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
### Features
|
|
21
|
-
|
|
22
|
-
* **deps:** bump [@typescript-eslint](https://github.com/typescript-eslint)/eslint-plugin from 5.14.0 to 5.18.0 ([#416](https://github.com/linz/style-js/issues/416)) ([6b8bf7a](https://github.com/linz/style-js/commit/6b8bf7a))
|
|
23
|
-
* **deps:** bump [@typescript-eslint](https://github.com/typescript-eslint)/eslint-plugin from 5.18.0 to 5.22.0 ([#434](https://github.com/linz/style-js/issues/434)) ([dddb6e6](https://github.com/linz/style-js/commit/dddb6e6))
|
|
24
|
-
* **deps:** bump [@typescript-eslint](https://github.com/typescript-eslint)/eslint-plugin from 5.22.0 to 5.23.0 ([#436](https://github.com/linz/style-js/issues/436)) ([23fe674](https://github.com/linz/style-js/commit/23fe674))
|
|
25
|
-
* **deps:** bump [@typescript-eslint](https://github.com/typescript-eslint)/parser from 5.14.0 to 5.18.0 ([#415](https://github.com/linz/style-js/issues/415)) ([a50861e](https://github.com/linz/style-js/commit/a50861e))
|
|
26
|
-
* **deps:** bump [@typescript-eslint](https://github.com/typescript-eslint)/parser from 5.18.0 to 5.22.0 ([#432](https://github.com/linz/style-js/issues/432)) ([c65eab6](https://github.com/linz/style-js/commit/c65eab6))
|
|
27
|
-
* **deps:** bump [@typescript-eslint](https://github.com/typescript-eslint)/parser from 5.22.0 to 5.23.0 ([#435](https://github.com/linz/style-js/issues/435)) ([47521bc](https://github.com/linz/style-js/commit/47521bc))
|
|
28
|
-
* **deps:** bump eslint from 8.10.0 to 8.12.0 ([#412](https://github.com/linz/style-js/issues/412)) ([18b74a8](https://github.com/linz/style-js/commit/18b74a8))
|
|
29
|
-
* **deps:** bump eslint from 8.12.0 to 8.14.0 ([#427](https://github.com/linz/style-js/issues/427)) ([5eba7cd](https://github.com/linz/style-js/commit/5eba7cd))
|
|
30
|
-
* **deps:** bump eslint from 8.14.0 to 8.15.0 ([#437](https://github.com/linz/style-js/issues/437)) ([6010a26](https://github.com/linz/style-js/commit/6010a26))
|
|
31
|
-
* **deps:** bump minimist from 1.2.5 to 1.2.6 ([#410](https://github.com/linz/style-js/issues/410)) ([1fd432f](https://github.com/linz/style-js/commit/1fd432f))
|
|
32
|
-
* **deps:** bump prettier from 2.5.1 to 2.6.2 ([#414](https://github.com/linz/style-js/issues/414)) ([0c617de](https://github.com/linz/style-js/commit/0c617de))
|
|
33
|
-
* **deps:** bump typescript from 4.6.2 to 4.6.3 ([#409](https://github.com/linz/style-js/issues/409)) ([45b9f4a](https://github.com/linz/style-js/commit/45b9f4a))
|
|
34
|
-
* **deps:** bump typescript from 4.6.3 to 4.6.4 ([#430](https://github.com/linz/style-js/issues/430)) ([3a8c2e8](https://github.com/linz/style-js/commit/3a8c2e8))
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
<a name="3.7.0"></a>
|
|
39
|
-
# [3.7.0](https://github.com/linz/style-js/compare/v3.6.0...v3.7.0) (2022-03-13)
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
### Features
|
|
43
|
-
|
|
44
|
-
* **deps:** bump [@typescript-eslint](https://github.com/typescript-eslint)/eslint-plugin from 5.8.0 to 5.14.0 ([#398](https://github.com/linz/style-js/issues/398)) ([2d8aa44](https://github.com/linz/style-js/commit/2d8aa44))
|
|
45
|
-
* **deps:** bump [@typescript-eslint](https://github.com/typescript-eslint)/parser from 5.8.0 to 5.14.0 ([#399](https://github.com/linz/style-js/issues/399)) ([b17fc29](https://github.com/linz/style-js/commit/b17fc29))
|
|
46
|
-
* **deps:** bump eslint from 8.5.0 to 8.10.0 ([#395](https://github.com/linz/style-js/issues/395)) ([c4de536](https://github.com/linz/style-js/commit/c4de536))
|
|
47
|
-
* **deps:** bump eslint-config-prettier from 8.3.0 to 8.5.0 ([#397](https://github.com/linz/style-js/issues/397)) ([ecf20c9](https://github.com/linz/style-js/commit/ecf20c9))
|
|
48
|
-
* **deps:** bump typescript from 4.5.4 to 4.6.2 ([#396](https://github.com/linz/style-js/issues/396)) ([77300d1](https://github.com/linz/style-js/commit/77300d1))
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
# [3.6.0](https://github.com/linz/style-js/compare/v3.5.0...v3.6.0) (2021-12-20)
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
### Features
|
|
56
|
-
|
|
57
|
-
* **deps:** bump @typescript-eslint/eslint-plugin from 5.7.0 to 5.8.0 ([#350](https://github.com/linz/style-js/issues/350)) ([e9d4eb0](https://github.com/linz/style-js/commit/e9d4eb05fb11d9360fc148296a5ed06b39b37620))
|
|
58
|
-
* **deps:** bump @typescript-eslint/parser from 5.7.0 to 5.8.0 ([#351](https://github.com/linz/style-js/issues/351)) ([d95c6ac](https://github.com/linz/style-js/commit/d95c6ac84b7e483e4e9ef9693f4d1f35d3568f03))
|
|
59
|
-
* **deps:** bump eslint from 8.4.1 to 8.5.0 ([#348](https://github.com/linz/style-js/issues/348)) ([421008b](https://github.com/linz/style-js/commit/421008b871caac0c17c45b768b11d1e1e8847c2a))
|
|
60
|
-
* **deps:** bump typescript from 4.5.3 to 4.5.4 ([#346](https://github.com/linz/style-js/issues/346)) ([9cdec7c](https://github.com/linz/style-js/commit/9cdec7c44a383333c157be372d0ef20ff033df68))
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
<a name="3.5.0"></a>
|
|
65
|
-
# [3.5.0](https://github.com/linz/style-js/compare/v3.4.0...v3.5.0) (2021-12-13)
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
### Features
|
|
69
|
-
|
|
70
|
-
* **deps:** bump [@typescript-eslint](https://github.com/typescript-eslint)/eslint-plugin from 5.4.0 to 5.7.0 ([#343](https://github.com/linz/style-js/issues/343)) ([6923cbb](https://github.com/linz/style-js/commit/6923cbb))
|
|
71
|
-
* **deps:** bump [@typescript-eslint](https://github.com/typescript-eslint)/parser from 5.4.0 to 5.7.0 ([#344](https://github.com/linz/style-js/issues/344)) ([709416a](https://github.com/linz/style-js/commit/709416a))
|
|
72
|
-
* **deps:** bump eslint from 8.2.0 to 8.4.1 ([#341](https://github.com/linz/style-js/issues/341)) ([5970170](https://github.com/linz/style-js/commit/5970170))
|
|
73
|
-
* **deps:** bump prettier from 2.4.1 to 2.5.1 ([#336](https://github.com/linz/style-js/issues/336)) ([8c040a2](https://github.com/linz/style-js/commit/8c040a2))
|
|
74
|
-
* **deps:** bump typescript from 4.5.2 to 4.5.3 ([#342](https://github.com/linz/style-js/issues/342)) ([00feaa3](https://github.com/linz/style-js/commit/00feaa3))
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
<a name="3.4.0"></a>
|
|
79
|
-
# [3.4.0](https://github.com/linz/style-js/compare/v3.3.0...v3.4.0) (2021-11-18)
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
### Features
|
|
83
|
-
|
|
84
|
-
* typescript 4.5.2 & eslint 8 ([#326](https://github.com/linz/style-js/issues/326)) ([4ef3a3c](https://github.com/linz/style-js/commit/4ef3a3c))
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
<a name="3.3.0"></a>
|
|
89
|
-
# [3.3.0](https://github.com/linz/style-js/compare/v3.2.0...v3.3.0) (2021-10-14)
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
### Features
|
|
93
|
-
|
|
94
|
-
* **deps:** bump [@typescript-eslint](https://github.com/typescript-eslint)/eslint-plugin from 4.31.2 to 4.33.0 ([#311](https://github.com/linz/style-js/issues/311)) ([311c83f](https://github.com/linz/style-js/commit/311c83f))
|
|
95
|
-
* **deps:** bump [@typescript-eslint](https://github.com/typescript-eslint)/parser from 4.31.2 to 4.33.0 ([#312](https://github.com/linz/style-js/issues/312)) ([0757b0b](https://github.com/linz/style-js/commit/0757b0b))
|
|
96
|
-
* **deps:** bump typescript from 4.4.3 to 4.4.4 ([#316](https://github.com/linz/style-js/issues/316)) ([e57ec5a](https://github.com/linz/style-js/commit/e57ec5a))
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
<a name="3.2.0"></a>
|
|
101
|
-
# [3.2.0](https://github.com/linz/style-js/compare/v3.1.0...v3.2.0) (2021-09-21)
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
### Features
|
|
105
|
-
|
|
106
|
-
* **deps:** bump [@typescript-eslint](https://github.com/typescript-eslint)/eslint-plugin from 4.29.3 to 4.31.0 ([#289](https://github.com/linz/style-js/issues/289)) ([40ff224](https://github.com/linz/style-js/commit/40ff224))
|
|
107
|
-
* **deps:** bump [@typescript-eslint](https://github.com/typescript-eslint)/eslint-plugin from 4.31.0 to 4.31.2 ([#300](https://github.com/linz/style-js/issues/300)) ([71a921e](https://github.com/linz/style-js/commit/71a921e))
|
|
108
|
-
* **deps:** bump [@typescript-eslint](https://github.com/typescript-eslint)/parser from 4.29.3 to 4.31.0 ([#290](https://github.com/linz/style-js/issues/290)) ([e925f60](https://github.com/linz/style-js/commit/e925f60))
|
|
109
|
-
* **deps:** bump [@typescript-eslint](https://github.com/typescript-eslint)/parser from 4.31.0 to 4.31.2 ([#301](https://github.com/linz/style-js/issues/301)) ([2eb7c57](https://github.com/linz/style-js/commit/2eb7c57))
|
|
110
|
-
* **deps:** bump eslint-plugin-prettier from 3.4.1 to 4.0.0 ([#284](https://github.com/linz/style-js/issues/284)) ([d87290a](https://github.com/linz/style-js/commit/d87290a))
|
|
111
|
-
* **deps:** bump path-parse from 1.0.6 to 1.0.7 ([#270](https://github.com/linz/style-js/issues/270)) ([c745605](https://github.com/linz/style-js/commit/c745605))
|
|
112
|
-
* **deps:** bump prettier from 2.3.2 to 2.4.1 ([#298](https://github.com/linz/style-js/issues/298)) ([1153b74](https://github.com/linz/style-js/commit/1153b74))
|
|
113
|
-
* **deps:** bump typescript from 4.4.2 to 4.4.3 ([#295](https://github.com/linz/style-js/issues/295)) ([ef628ff](https://github.com/linz/style-js/commit/ef628ff))
|
|
114
|
-
* create github release on version tag ([a815e61](https://github.com/linz/style-js/commit/a815e61))
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
# [3.1.0](https://github.com/linz/style-js/compare/v3.0.0...v3.1.0) (2021-08-27)
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
### Features
|
|
122
|
-
|
|
123
|
-
* **deps:** bump @typescript-eslint/eslint-plugin from 4.28.5 to 4.29.3 ([#276](https://github.com/linz/style-js/issues/276)) ([29f8955](https://github.com/linz/style-js/commit/29f8955dc81ecacacedd6374e10cae8065986e21))
|
|
124
|
-
* **deps:** bump @typescript-eslint/parser from 4.28.5 to 4.29.3 ([#277](https://github.com/linz/style-js/issues/277)) ([4aacbcb](https://github.com/linz/style-js/commit/4aacbcba95cab0729370c4395b4a76028682afa3))
|
|
125
|
-
* **deps:** bump eslint from 7.31.0 to 7.32.0 ([#261](https://github.com/linz/style-js/issues/261)) ([39491bd](https://github.com/linz/style-js/commit/39491bd8c5c8554ff0c5d8fcdd61b467dfb90acd))
|
|
126
|
-
* **deps:** bump eslint-plugin-prettier from 3.4.0 to 3.4.1 ([#279](https://github.com/linz/style-js/issues/279)) ([263e0ef](https://github.com/linz/style-js/commit/263e0efd7a960b6d2fbed31a844113354fa665cd))
|
|
127
|
-
* **deps:** bump typescript from 4.3.5 to 4.4.2 ([#281](https://github.com/linz/style-js/issues/281)) ([3b1f7e5](https://github.com/linz/style-js/commit/3b1f7e5856d352e72bb052a3e3a826ce1001a303))
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
# [3.0.0](https://github.com/linz/style-js/compare/v2.1.5...v3.0.0) (2021-08-01)
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
### Features
|
|
135
|
-
|
|
136
|
-
* **deps:** bump @typescript-eslint/eslint-plugin from 4.28.2 to 4.28.5 ([#253](https://github.com/linz/style-js/issues/253)) ([897b8a1](https://github.com/linz/style-js/commit/897b8a12d932cac996397f8953fdf67a4b9bf952))
|
|
137
|
-
* **deps:** bump @typescript-eslint/parser from 4.28.2 to 4.28.5 ([#254](https://github.com/linz/style-js/issues/254)) ([c0b95f6](https://github.com/linz/style-js/commit/c0b95f6d2c285e7056b5c31fbe15bc84e40f8b8a))
|
|
138
|
-
* **deps:** bump eslint from 7.30.0 to 7.31.0 ([#248](https://github.com/linz/style-js/issues/248)) ([3efc640](https://github.com/linz/style-js/commit/3efc640badf968bfd227266432e42fe8d0948f26))
|
|
139
|
-
* add support for linting/formatting json ([#256](https://github.com/linz/style-js/issues/256)) ([08730d1](https://github.com/linz/style-js/commit/08730d1a9f92d238e11b899c07f25a557a5a03ff))
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
1
|
## [3.16.0](https://github.com/linz/style-js/compare/v3.15.0...v3.16.0) (2023-03-30)
|
|
144
2
|
|
|
145
3
|
|
|
@@ -161,6 +19,19 @@
|
|
|
161
19
|
* **deps:** bump typescript from 4.9.5 to 5.0.2 ([#660](https://github.com/linz/style-js/issues/660)) ([6cda686](https://github.com/linz/style-js/commit/6cda6866011782df3fbe26e1524236aac4242ed8))
|
|
162
20
|
* **deps:** bump typescript from 5.0.2 to 5.0.3 ([#674](https://github.com/linz/style-js/issues/674)) ([b38bdfc](https://github.com/linz/style-js/commit/b38bdfc838712d9b4e4c1adf4f1ccfd159262f37))
|
|
163
21
|
|
|
22
|
+
## [4.0.0](https://github.com/linz/style-js/compare/v3.16.0...v4.0.0) (2023-05-10)
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
### ⚠ BREAKING CHANGES
|
|
26
|
+
|
|
27
|
+
* switch to ESM by default ([#696](https://github.com/linz/style-js/issues/696))
|
|
28
|
+
|
|
29
|
+
### Features
|
|
30
|
+
|
|
31
|
+
* **deps:** bump eslint from 8.37.0 to 8.39.0 ([#685](https://github.com/linz/style-js/issues/685)) ([0f9ec84](https://github.com/linz/style-js/commit/0f9ec84eca0fa71634c43c88efdafd566b727350))
|
|
32
|
+
* **deps:** bump typescript from 5.0.3 to 5.0.4 ([#677](https://github.com/linz/style-js/issues/677)) ([f81b45a](https://github.com/linz/style-js/commit/f81b45a14a67356422e2e2d03563b47fc6b4b5f6))
|
|
33
|
+
* switch to ESM by default ([#696](https://github.com/linz/style-js/issues/696)) ([e5d39c1](https://github.com/linz/style-js/commit/e5d39c1eb8fd21f16c800566757d307c36d13af3))
|
|
34
|
+
|
|
164
35
|
## [3.15.0](https://github.com/linz/style-js/compare/v3.14.0...v3.15.0) (2023-01-09)
|
|
165
36
|
|
|
166
37
|
|
package/README.md
CHANGED
|
@@ -6,11 +6,12 @@
|
|
|
6
6
|
NPM configuration for base typescript projects
|
|
7
7
|
|
|
8
8
|
Includes:
|
|
9
|
+
|
|
9
10
|
- Prettier
|
|
10
|
-
- Eslint
|
|
11
|
+
- Eslint
|
|
11
12
|
- Typescript
|
|
12
13
|
|
|
13
|
-
And configuration for saneish defaults, which can be extended
|
|
14
|
+
And configuration for saneish defaults, which can be extended
|
|
14
15
|
|
|
15
16
|
Most of these are the raw defaults/recommended settings from typescript, eslint and prettier.
|
|
16
17
|
|
|
@@ -36,8 +37,10 @@ export class FooBar {
|
|
|
36
37
|
## IDE Usage
|
|
37
38
|
|
|
38
39
|
### Usage VS Code
|
|
40
|
+
|
|
39
41
|
1. Install `eslint` using the extensions menu
|
|
40
42
|
2. Add the following to your settings.json
|
|
43
|
+
|
|
41
44
|
```json
|
|
42
45
|
"editor.codeActionsOnSave": {
|
|
43
46
|
"source.fixAll.eslint": true
|
|
@@ -46,34 +49,36 @@ export class FooBar {
|
|
|
46
49
|
```
|
|
47
50
|
|
|
48
51
|
### Usage with IntelliJ
|
|
52
|
+
|
|
49
53
|
IntelliJ has ESLint support by default,
|
|
50
54
|
|
|
51
55
|
1. Open the settings in Languages & Frameworks > JavaScript > Code Quality Tools > ESLint
|
|
52
56
|
2. Check Automatic ESLint Configuration
|
|
53
57
|
|
|
54
|
-
|
|
55
|
-
|
|
56
58
|
## Project Usage
|
|
57
59
|
|
|
58
60
|
1. Install LINZ Style
|
|
61
|
+
|
|
59
62
|
```bash
|
|
60
|
-
yarn add -D @linzjs/style
|
|
61
|
-
# Or
|
|
62
63
|
npm install @linzjs/style
|
|
63
64
|
```
|
|
64
65
|
|
|
65
66
|
2. Create the base configuration files
|
|
67
|
+
|
|
66
68
|
```bash
|
|
67
69
|
# If on windows run `node node_modules\@linzjs\style\build\src\install.js`
|
|
68
70
|
# - tsconfig.json
|
|
69
|
-
# - .eslintrc.
|
|
70
|
-
# - .prettierrc.
|
|
71
|
+
# - .eslintrc.cjs
|
|
72
|
+
# - .prettierrc.cjs
|
|
71
73
|
npx linz-style-install
|
|
72
74
|
```
|
|
73
75
|
|
|
74
|
-
|
|
75
76
|
3. Apply the formatting/linting to all source code
|
|
77
|
+
|
|
76
78
|
```
|
|
77
|
-
npx eslint
|
|
79
|
+
npx eslint .
|
|
78
80
|
```
|
|
79
81
|
|
|
82
|
+
## Migration from 3.x to 4.x
|
|
83
|
+
|
|
84
|
+
See [Migration Docs](./migration.4.md)
|
|
@@ -1,7 +1,4 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.FooMaker = exports.Foo = exports.FooBar = void 0;
|
|
4
|
-
class FooBar {
|
|
1
|
+
export class FooBar {
|
|
5
2
|
get foo() {
|
|
6
3
|
return 1;
|
|
7
4
|
}
|
|
@@ -15,8 +12,6 @@ class FooBar {
|
|
|
15
12
|
return `${foo}bar`;
|
|
16
13
|
}
|
|
17
14
|
}
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
exports.FooMaker = FooMaker;
|
|
22
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2xhc3MuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi9zcmMvX190ZXN0X18vY2xhc3MudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7O0FBQUEsTUFBYSxNQUFNO0lBQ2pCLElBQUksR0FBRztRQUNMLE9BQU8sQ0FBQyxDQUFDO0lBQ1gsQ0FBQztJQUVELEtBQUssQ0FBQyxHQUFHO1FBQ1AsT0FBTyxLQUFLLENBQUM7SUFDZixDQUFDO0lBRUQ7O09BRUc7SUFDSCxNQUFNLENBQUMsR0FBRyxHQUFHLEtBQUs7UUFDaEIsT0FBTyxHQUFHLEdBQUcsS0FBSyxDQUFDO0lBQ3JCLENBQUM7Q0FDRjtBQWZELHdCQWVDO0FBRVksUUFBQSxHQUFHLEdBQUcsSUFBSSxNQUFNLEVBQUUsQ0FBQztBQUN6QixNQUFNLFFBQVEsR0FBRyxDQUFDLENBQVMsRUFBVSxFQUFFLENBQUMsSUFBSSxNQUFNLEVBQUUsQ0FBQyxNQUFNLENBQUMsQ0FBQyxDQUFDLENBQUM7QUFBekQsUUFBQSxRQUFRLFlBQWlEIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0IGNsYXNzIEZvb0JhciB7XG4gIGdldCBmb28oKTogbnVtYmVyIHtcbiAgICByZXR1cm4gMTtcbiAgfVxuXG4gIGFzeW5jIGJhcigpOiBQcm9taXNlPHN0cmluZz4ge1xuICAgIHJldHVybiAnYmFyJztcbiAgfVxuXG4gIC8qKlxuICAgKiBAcGFyYW0gZm9vIGZvbyB0byBiYXJcbiAgICovXG4gIGZvb0Jhcihmb28gPSAnZm9vJyk6IHN0cmluZyB7XG4gICAgcmV0dXJuIGAke2Zvb31iYXJgO1xuICB9XG59XG5cbmV4cG9ydCBjb25zdCBGb28gPSBuZXcgRm9vQmFyKCk7XG5leHBvcnQgY29uc3QgRm9vTWFrZXIgPSAoZjogc3RyaW5nKTogc3RyaW5nID0+IG5ldyBGb29CYXIoKS5mb29CYXIoZik7XG4iXX0=
|
|
15
|
+
export const Foo = new FooBar();
|
|
16
|
+
export const FooMaker = (f) => new FooBar().fooBar(f);
|
|
17
|
+
//# sourceMappingURL=class.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"class.js","sourceRoot":"","sources":["../../../src/__test__/class.ts"],"names":[],"mappings":"AAAA,MAAM,OAAO,MAAM;IACjB,IAAI,GAAG;QACL,OAAO,CAAC,CAAC;IACX,CAAC;IAED,KAAK,CAAC,GAAG;QACP,OAAO,KAAK,CAAC;IACf,CAAC;IAED;;OAEG;IACH,MAAM,CAAC,GAAG,GAAG,KAAK;QAChB,OAAO,GAAG,GAAG,KAAK,CAAC;IACrB,CAAC;CACF;AAED,MAAM,CAAC,MAAM,GAAG,GAAG,IAAI,MAAM,EAAE,CAAC;AAChC,MAAM,CAAC,MAAM,QAAQ,GAAG,CAAC,CAAS,EAAU,EAAE,CAAC,IAAI,MAAM,EAAE,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC"}
|
|
@@ -1,7 +1,4 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.FooMaker = exports.Foo = exports.FooBar = void 0;
|
|
4
|
-
class FooBar {
|
|
1
|
+
export class FooBar {
|
|
5
2
|
get foo() {
|
|
6
3
|
return 1;
|
|
7
4
|
}
|
|
@@ -19,8 +16,6 @@ class FooBar {
|
|
|
19
16
|
return `${foo}bar`;
|
|
20
17
|
}
|
|
21
18
|
}
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
exports.FooMaker = FooMaker;
|
|
26
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2xhc3MudGVzdC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NyYy9fX3Rlc3RfXy9jbGFzcy50ZXN0LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7OztBQUFBLE1BQWEsTUFBTTtJQUNqQixJQUFJLEdBQUc7UUFDTCxPQUFPLENBQUMsQ0FBQztJQUNYLENBQUM7SUFFRCxLQUFLLENBQUMsR0FBRztRQUNQLE9BQU8sS0FBSyxDQUFDO0lBQ2YsQ0FBQztJQUVELDRCQUE0QjtJQUM1QixLQUFLLENBQUMsQ0FBVTtRQUNkLE9BQU8sQ0FBRSxDQUFDO0lBQ1osQ0FBQztJQUVEOztPQUVHO0lBQ0gsTUFBTSxDQUFDLEdBQUcsR0FBRyxLQUFLO1FBQ2hCLE9BQU8sR0FBRyxHQUFHLEtBQUssQ0FBQztJQUNyQixDQUFDO0NBQ0Y7QUFwQkQsd0JBb0JDO0FBRVksUUFBQSxHQUFHLEdBQUcsSUFBSSxNQUFNLEVBQUUsQ0FBQztBQUN6QixNQUFNLFFBQVEsR0FBRyxDQUFDLENBQVMsRUFBVSxFQUFFLENBQUMsSUFBSSxNQUFNLEVBQUUsQ0FBQyxNQUFNLENBQUMsQ0FBQyxDQUFDLENBQUM7QUFBekQsUUFBQSxRQUFRLFlBQWlEIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0IGNsYXNzIEZvb0JhciB7XG4gIGdldCBmb28oKTogbnVtYmVyIHtcbiAgICByZXR1cm4gMTtcbiAgfVxuXG4gIGFzeW5jIGJhcigpOiBQcm9taXNlPHN0cmluZz4ge1xuICAgIHJldHVybiAnYmFyJztcbiAgfVxuXG4gIC8vIFNob3VsZCBhbGxvdyBgIWAgaW4gdGVzdHNcbiAgbWF5YmUoZj86IHN0cmluZyk6IHN0cmluZyB7XG4gICAgcmV0dXJuIGYhO1xuICB9XG5cbiAgLyoqXG4gICAqIEBwYXJhbSBmb28gZm9vIHRvIGJhclxuICAgKi9cbiAgZm9vQmFyKGZvbyA9ICdmb28nKTogc3RyaW5nIHtcbiAgICByZXR1cm4gYCR7Zm9vfWJhcmA7XG4gIH1cbn1cblxuZXhwb3J0IGNvbnN0IEZvbyA9IG5ldyBGb29CYXIoKTtcbmV4cG9ydCBjb25zdCBGb29NYWtlciA9IChmOiBzdHJpbmcpOiBzdHJpbmcgPT4gbmV3IEZvb0JhcigpLmZvb0JhcihmKTtcbiJdfQ==
|
|
19
|
+
export const Foo = new FooBar();
|
|
20
|
+
export const FooMaker = (f) => new FooBar().fooBar(f);
|
|
21
|
+
//# sourceMappingURL=class.test.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"class.test.js","sourceRoot":"","sources":["../../../src/__test__/class.test.ts"],"names":[],"mappings":"AAAA,MAAM,OAAO,MAAM;IACjB,IAAI,GAAG;QACL,OAAO,CAAC,CAAC;IACX,CAAC;IAED,KAAK,CAAC,GAAG;QACP,OAAO,KAAK,CAAC;IACf,CAAC;IAED,4BAA4B;IAC5B,KAAK,CAAC,CAAU;QACd,OAAO,CAAE,CAAC;IACZ,CAAC;IAED;;OAEG;IACH,MAAM,CAAC,GAAG,GAAG,KAAK;QAChB,OAAO,GAAG,GAAG,KAAK,CAAC;IACrB,CAAC;CACF;AAED,MAAM,CAAC,MAAM,GAAG,GAAG,IAAI,MAAM,EAAE,CAAC;AAChC,MAAM,CAAC,MAAM,QAAQ,GAAG,CAAC,CAAS,EAAU,EAAE,CAAC,IAAI,MAAM,EAAE,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC"}
|
package/build/src/install.d.ts
CHANGED
package/build/src/install.js
CHANGED
|
@@ -1,47 +1,23 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
if (k2 === undefined) k2 = k;
|
|
4
|
-
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
-
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
-
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
-
}
|
|
8
|
-
Object.defineProperty(o, k2, desc);
|
|
9
|
-
}) : (function(o, m, k, k2) {
|
|
10
|
-
if (k2 === undefined) k2 = k;
|
|
11
|
-
o[k2] = m[k];
|
|
12
|
-
}));
|
|
13
|
-
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
-
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
-
}) : function(o, v) {
|
|
16
|
-
o["default"] = v;
|
|
17
|
-
});
|
|
18
|
-
var __importStar = (this && this.__importStar) || function (mod) {
|
|
19
|
-
if (mod && mod.__esModule) return mod;
|
|
20
|
-
var result = {};
|
|
21
|
-
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
22
|
-
__setModuleDefault(result, mod);
|
|
23
|
-
return result;
|
|
24
|
-
};
|
|
25
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
|
-
const fs = __importStar(require("fs"));
|
|
27
|
-
const path = __importStar(require("path"));
|
|
1
|
+
import { promises as fs, existsSync } from 'node:fs';
|
|
2
|
+
import * as path from 'node:path';
|
|
28
3
|
/** List of files to automatically install */
|
|
29
4
|
const InstallFiles = [
|
|
30
|
-
{ source: 'eslintrc.
|
|
31
|
-
{ source: 'prettierrc.
|
|
5
|
+
{ source: 'eslintrc.cjs', target: '.eslintrc.cjs' },
|
|
6
|
+
{ source: 'prettierrc.cjs', target: '.prettierrc.cjs' },
|
|
32
7
|
{ source: 'tsconfig.json', target: 'tsconfig.json' },
|
|
33
8
|
];
|
|
34
|
-
const InstallPath =
|
|
9
|
+
const InstallPath = new URL('../../config/', import.meta.url);
|
|
35
10
|
/** Install the config into the local folder */
|
|
36
11
|
async function main() {
|
|
37
12
|
for (const { source, target } of InstallFiles) {
|
|
38
|
-
if (
|
|
39
|
-
console.log(
|
|
13
|
+
if (existsSync(target)) {
|
|
14
|
+
console.log('Skipped', { fileName: target });
|
|
40
15
|
continue;
|
|
41
16
|
}
|
|
42
|
-
|
|
17
|
+
const sourcePath = new URL(source, InstallPath);
|
|
18
|
+
await fs.copyFile(sourcePath, path.join('./', target));
|
|
43
19
|
console.log('Installed', { fileName: target });
|
|
44
20
|
}
|
|
45
21
|
}
|
|
46
22
|
main().catch(console.error);
|
|
47
|
-
//# sourceMappingURL=
|
|
23
|
+
//# sourceMappingURL=install.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"install.js","sourceRoot":"","sources":["../../src/install.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,IAAI,EAAE,EAAE,UAAU,EAAE,MAAM,SAAS,CAAC;AACrD,OAAO,KAAK,IAAI,MAAM,WAAW,CAAC;AAElC,6CAA6C;AAC7C,MAAM,YAAY,GAAG;IACnB,EAAE,MAAM,EAAE,cAAc,EAAE,MAAM,EAAE,eAAe,EAAE;IACnD,EAAE,MAAM,EAAE,gBAAgB,EAAE,MAAM,EAAE,iBAAiB,EAAE;IACvD,EAAE,MAAM,EAAE,eAAe,EAAE,MAAM,EAAE,eAAe,EAAE;CACrD,CAAC;AAEF,MAAM,WAAW,GAAG,IAAI,GAAG,CAAC,eAAe,EAAE,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;AAE9D,+CAA+C;AAC/C,KAAK,UAAU,IAAI;IACjB,KAAK,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,IAAI,YAAY,EAAE;QAC7C,IAAI,UAAU,CAAC,MAAM,CAAC,EAAE;YACtB,OAAO,CAAC,GAAG,CAAC,SAAS,EAAE,EAAE,QAAQ,EAAE,MAAM,EAAE,CAAC,CAAC;YAC7C,SAAS;SACV;QACD,MAAM,UAAU,GAAG,IAAI,GAAG,CAAC,MAAM,EAAE,WAAW,CAAC,CAAC;QAChD,MAAM,EAAE,CAAC,QAAQ,CAAC,UAAU,EAAE,IAAI,CAAC,IAAI,CAAC,IAAI,EAAE,MAAM,CAAC,CAAC,CAAC;QACvD,OAAO,CAAC,GAAG,CAAC,WAAW,EAAE,EAAE,QAAQ,EAAE,MAAM,EAAE,CAAC,CAAC;KAChD;AACH,CAAC;AAED,IAAI,EAAE,CAAC,KAAK,CAAC,OAAO,CAAC,KAAK,CAAC,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"program":{"fileNames":["../node_modules/typescript/lib/lib.es5.d.ts","../node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/typescript/lib/lib.es2018.d.ts","../node_modules/typescript/lib/lib.es2019.d.ts","../node_modules/typescript/lib/lib.es2020.d.ts","../node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/typescript/lib/lib.es2019.array.d.ts","../node_modules/typescript/lib/lib.es2019.object.d.ts","../node_modules/typescript/lib/lib.es2019.string.d.ts","../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../node_modules/typescript/lib/lib.es2019.intl.d.ts","../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../node_modules/typescript/lib/lib.es2020.date.d.ts","../node_modules/typescript/lib/lib.es2020.promise.d.ts","../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2020.string.d.ts","../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2020.intl.d.ts","../node_modules/typescript/lib/lib.es2020.number.d.ts","../node_modules/typescript/lib/lib.esnext.intl.d.ts","../node_modules/typescript/lib/lib.decorators.d.ts","../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../src/install.ts","../src/__test__/class.test.ts","../src/__test__/class.ts","../node_modules/@types/json-schema/index.d.ts","../node_modules/@types/node/assert.d.ts","../node_modules/@types/node/assert/strict.d.ts","../node_modules/@types/node/globals.d.ts","../node_modules/@types/node/async_hooks.d.ts","../node_modules/@types/node/buffer.d.ts","../node_modules/@types/node/child_process.d.ts","../node_modules/@types/node/cluster.d.ts","../node_modules/@types/node/console.d.ts","../node_modules/@types/node/constants.d.ts","../node_modules/@types/node/crypto.d.ts","../node_modules/@types/node/dgram.d.ts","../node_modules/@types/node/diagnostics_channel.d.ts","../node_modules/@types/node/dns.d.ts","../node_modules/@types/node/dns/promises.d.ts","../node_modules/@types/node/domain.d.ts","../node_modules/@types/node/dom-events.d.ts","../node_modules/@types/node/events.d.ts","../node_modules/@types/node/fs.d.ts","../node_modules/@types/node/fs/promises.d.ts","../node_modules/@types/node/http.d.ts","../node_modules/@types/node/http2.d.ts","../node_modules/@types/node/https.d.ts","../node_modules/@types/node/inspector.d.ts","../node_modules/@types/node/module.d.ts","../node_modules/@types/node/net.d.ts","../node_modules/@types/node/os.d.ts","../node_modules/@types/node/path.d.ts","../node_modules/@types/node/perf_hooks.d.ts","../node_modules/@types/node/process.d.ts","../node_modules/@types/node/punycode.d.ts","../node_modules/@types/node/querystring.d.ts","../node_modules/@types/node/readline.d.ts","../node_modules/@types/node/readline/promises.d.ts","../node_modules/@types/node/repl.d.ts","../node_modules/@types/node/stream.d.ts","../node_modules/@types/node/stream/promises.d.ts","../node_modules/@types/node/stream/consumers.d.ts","../node_modules/@types/node/stream/web.d.ts","../node_modules/@types/node/string_decoder.d.ts","../node_modules/@types/node/test.d.ts","../node_modules/@types/node/timers.d.ts","../node_modules/@types/node/timers/promises.d.ts","../node_modules/@types/node/tls.d.ts","../node_modules/@types/node/trace_events.d.ts","../node_modules/@types/node/tty.d.ts","../node_modules/@types/node/url.d.ts","../node_modules/@types/node/util.d.ts","../node_modules/@types/node/v8.d.ts","../node_modules/@types/node/vm.d.ts","../node_modules/@types/node/wasi.d.ts","../node_modules/@types/node/worker_threads.d.ts","../node_modules/@types/node/zlib.d.ts","../node_modules/@types/node/globals.global.d.ts","../node_modules/@types/node/index.d.ts","../node_modules/@types/semver/classes/semver.d.ts","../node_modules/@types/semver/functions/parse.d.ts","../node_modules/@types/semver/functions/valid.d.ts","../node_modules/@types/semver/functions/clean.d.ts","../node_modules/@types/semver/functions/inc.d.ts","../node_modules/@types/semver/functions/diff.d.ts","../node_modules/@types/semver/functions/major.d.ts","../node_modules/@types/semver/functions/minor.d.ts","../node_modules/@types/semver/functions/patch.d.ts","../node_modules/@types/semver/functions/prerelease.d.ts","../node_modules/@types/semver/functions/compare.d.ts","../node_modules/@types/semver/functions/rcompare.d.ts","../node_modules/@types/semver/functions/compare-loose.d.ts","../node_modules/@types/semver/functions/compare-build.d.ts","../node_modules/@types/semver/functions/sort.d.ts","../node_modules/@types/semver/functions/rsort.d.ts","../node_modules/@types/semver/functions/gt.d.ts","../node_modules/@types/semver/functions/lt.d.ts","../node_modules/@types/semver/functions/eq.d.ts","../node_modules/@types/semver/functions/neq.d.ts","../node_modules/@types/semver/functions/gte.d.ts","../node_modules/@types/semver/functions/lte.d.ts","../node_modules/@types/semver/functions/cmp.d.ts","../node_modules/@types/semver/functions/coerce.d.ts","../node_modules/@types/semver/classes/comparator.d.ts","../node_modules/@types/semver/classes/range.d.ts","../node_modules/@types/semver/functions/satisfies.d.ts","../node_modules/@types/semver/ranges/max-satisfying.d.ts","../node_modules/@types/semver/ranges/min-satisfying.d.ts","../node_modules/@types/semver/ranges/to-comparators.d.ts","../node_modules/@types/semver/ranges/min-version.d.ts","../node_modules/@types/semver/ranges/valid.d.ts","../node_modules/@types/semver/ranges/outside.d.ts","../node_modules/@types/semver/ranges/gtr.d.ts","../node_modules/@types/semver/ranges/ltr.d.ts","../node_modules/@types/semver/ranges/intersects.d.ts","../node_modules/@types/semver/ranges/simplify.d.ts","../node_modules/@types/semver/ranges/subset.d.ts","../node_modules/@types/semver/internals/identifiers.d.ts","../node_modules/@types/semver/index.d.ts"],"fileInfos":[{"version":"6a6b471e7e43e15ef6f8fe617a22ce4ecb0e34efa6c3dfcfe7cebd392bcca9d2","affectsGlobalScope":true},"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","dc48272d7c333ccf58034c0026162576b7d50ea0e69c3b9292f803fc20720fd5","27147504487dc1159369da4f4da8a26406364624fa9bc3db632f7d94a5bae2c3","5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4",{"version":"f296963760430fb65b4e5d91f0ed770a91c6e77455bacf8fa23a1501654ede0e","affectsGlobalScope":true},{"version":"5114a95689b63f96b957e00216bc04baf9e1a1782aa4d8ee7e5e9acbf768e301","affectsGlobalScope":true},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true},{"version":"ab22100fdd0d24cfc2cc59d0a00fc8cf449830d9c4030dc54390a46bd562e929","affectsGlobalScope":true},{"version":"f7bd636ae3a4623c503359ada74510c4005df5b36de7f23e1db8a5c543fd176b","affectsGlobalScope":true},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true},{"version":"0c20f4d2358eb679e4ae8a4432bdd96c857a2960fd6800b21ec4008ec59d60ea","affectsGlobalScope":true},{"version":"36ae84ccc0633f7c0787bc6108386c8b773e95d3b052d9464a99cd9b8795fbec","affectsGlobalScope":true},{"version":"82d0d8e269b9eeac02c3bd1c9e884e85d483fcb2cd168bccd6bc54df663da031","affectsGlobalScope":true},{"version":"b8deab98702588840be73d67f02412a2d45a417a3c097b2e96f7f3a42ac483d1","affectsGlobalScope":true},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true},{"version":"376d554d042fb409cb55b5cbaf0b2b4b7e669619493c5d18d5fa8bd67273f82a","affectsGlobalScope":true},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true},{"version":"c4138a3dd7cd6cf1f363ca0f905554e8d81b45844feea17786cdf1626cb8ea06","affectsGlobalScope":true},{"version":"6ff3e2452b055d8f0ec026511c6582b55d935675af67cdb67dd1dc671e8065df","affectsGlobalScope":true},{"version":"03de17b810f426a2f47396b0b99b53a82c1b60e9cba7a7edda47f9bb077882f4","affectsGlobalScope":true},{"version":"8184c6ddf48f0c98429326b428478ecc6143c27f79b79e85740f17e6feb090f1","affectsGlobalScope":true},{"version":"261c4d2cf86ac5a89ad3fb3fafed74cbb6f2f7c1d139b0540933df567d64a6ca","affectsGlobalScope":true},{"version":"6af1425e9973f4924fca986636ac19a0cf9909a7e0d9d3009c349e6244e957b6","affectsGlobalScope":true},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true},{"version":"15a630d6817718a2ddd7088c4f83e4673fde19fa992d2eae2cf51132a302a5d3","affectsGlobalScope":true},{"version":"b7e9f95a7387e3f66be0ed6db43600c49cec33a3900437ce2fd350d9b7cb16f2","affectsGlobalScope":true},{"version":"01e0ee7e1f661acedb08b51f8a9b7d7f959e9cdb6441360f06522cc3aea1bf2e","affectsGlobalScope":true},{"version":"ac17a97f816d53d9dd79b0d235e1c0ed54a8cc6a0677e9a3d61efb480b2a3e4e","affectsGlobalScope":true},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true},{"version":"ec0104fee478075cb5171e5f4e3f23add8e02d845ae0165bfa3f1099241fa2aa","affectsGlobalScope":true},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true},{"version":"9cc66b0513ad41cb5f5372cca86ef83a0d37d1c1017580b7dace3ea5661836df","affectsGlobalScope":true},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true},{"version":"307c8b7ebbd7f23a92b73a4c6c0a697beca05b06b036c23a34553e5fe65e4fdc","affectsGlobalScope":true},{"version":"189c0703923150aa30673fa3de411346d727cc44a11c75d05d7cf9ef095daa22","affectsGlobalScope":true},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true},{"version":"e1ee47a187401df075d29fd9579b01fca3bdd226a782de45e67a30890c378fd6","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"6608f6c120449a28d246ab69b2cc558b4a68d62d647bfbc38de1a44b10153cce","signature":"5885b091ce30919d04a9e83f5069c1ebe089164980b36a3afbac37151acb6adc"},{"version":"95238be6506c0992f16416c5fa5d3093ac7f67801de14a719a3abff6d75a19a6","signature":"dd8ba7247da63d6e1c9eb0ad4d040bc110cb482c94c206626d8f96388dcd88b9"},"0359682c54e487c4cab2b53b2b4d35cc8dea4d9914bc6abcdb5701f8b8e745a4","7e771891adaa85b690266bc37bd6eb43bc57eecc4b54693ead36467e7369952a","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"57b6cb95756d1fe3bfeb20205de27b0c5406e4a86e130c6dfa6bd92af641e09d","affectsGlobalScope":true},"11e2d554398d2bd460e7d06b2fa5827a297c8acfbe00b4f894a224ac0862857f",{"version":"e193e634a99c9c1d71f1c6e4e1567a4a73584328d21ea02dd5cddbaad6693f61","affectsGlobalScope":true},"374ca798f244e464346f14301dc2a8b4b111af1a83b49fffef5906c338a1f922","5a94487653355b56018122d92392beb2e5f4a6c63ba5cef83bbe1c99775ef713",{"version":"d5135ad93b33adcce80b18f8065087934cdc1730d63db58562edcf017e1aad9b","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","e596c9bb2f29a2699fdd4ae89139612652245192f67f45617c5a4b20832aaae9","bb9c4ffa5e6290c6980b63c815cdd1625876dadb2efaf77edbe82984be93e55e","1cdcfc1f624d6c08aa12c73935f6e13f095919cd99edf95752951796eb225729","216717f17c095cde1dc19375e1ab3af0a4a485355860c077a4f9d6ea59fab5b5","14b5aa23c5d0ae1907bc696ac7b6915d88f7d85799cc0dc2dcf98fbce2c5a67c","5c439dafdc09abe4d6c260a96b822fa0ba5be7203c71a63ab1f1423cd9e838ea",{"version":"6b526a5ec4a401ca7c26cfe6a48e641d8f30af76673bad3b06a1b4504594a960","affectsGlobalScope":true},{"version":"816ad2e607a96de5bcac7d437f843f5afd8957f1fa5eefa6bba8e4ed7ca8fd84","affectsGlobalScope":true},"80473bd0dd90ca1e166514c2dfead9d5803f9c51418864ca35abbeec6e6847e1","1c84b46267610a34028edfd0d035509341751262bac1062857f3c8df7aff7153","e6c86d83bd526c8bdb5d0bf935b8e72ce983763d600743f74d812fdf4abf4df6","a3d541d303ee505053f5dcbf9fafb65cac3d5631037501cd616195863a6c5740","8d3c583a07e0c37e876908c2d5da575019f689df8d9fa4c081d99119d53dba22","2c828a5405191d006115ab34e191b8474bc6c86ffdc401d1a9864b1b6e088a58",{"version":"e630e5528e899219ae319e83bef54bf3bcb91b01d76861ecf881e8e614b167f0","affectsGlobalScope":true},"bcebb922784739bdb34c18ee51095d25a92b560c78ccd2eaacd6bd00f7443d83","7ee6ed878c4528215c82b664fe0cfe80e8b4da6c0d4cc80869367868774db8b1","b0973c3cbcdc59b37bf477731d468696ecaf442593ec51bab497a613a580fe30",{"version":"4989e92ba5b69b182d2caaea6295af52b7dc73a4f7a2e336a676722884e7139d","affectsGlobalScope":true},{"version":"0715e4cd28ad471b2a93f3e552ff51a3ae423417a01a10aa1d3bc7c6b95059d6","affectsGlobalScope":true},"5153a2fd150e46ce57bb3f8db1318d33f6ad3261ed70ceeff92281c0608c74a3","210d54cd652ec0fec8c8916e4af59bb341065576ecda039842f9ffb2e908507c","36b03690b628eab08703d63f04eaa89c5df202e5f1edf3989f13ad389cd2c091","0effadd232a20498b11308058e334d3339cc5bf8c4c858393e38d9d4c0013dcf","25846d43937c672bab7e8195f3d881f93495df712ee901860effc109918938cc","7d55d78cd47cf5280643b53434b16c2d9d11d144126932759fbdd51da525eec4","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff","69ee23dd0d215b09907ad30d23f88b7790c93329d1faf31d7835552a10cf7cbf","44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","23b89798789dffbd437c0c423f5d02d11f9736aea73d6abf16db4f812ff36eda","f69ff39996a61a0dd10f4bce73272b52e8024a4d58b13ab32bf4712909d0a2b7",{"version":"3c4ba1dd9b12ffa284b565063108f2f031d150ea15b8fafbdc17f5d2a07251f3","affectsGlobalScope":true},"e10177274a35a9d07c825615340b2fcde2f610f53f3fb40269fd196b4288dda6","c4577fb855ca259bdbf3ea663ca73988ce5f84251a92b4aef80a1f4122b6f98e","3c13ef48634e7b5012fcf7e8fce7496352c2d779a7201389ca96a2a81ee4314d","5d0a25ec910fa36595f85a67ac992d7a53dd4064a1ba6aea1c9f14ab73a023f2",{"version":"f0900cd5d00fe1263ff41201fb8073dbeb984397e4af3b8002a5c207a30bdc33","affectsGlobalScope":true},{"version":"ff07a9a03c65732ccc59b3c65bc584173da093bd563a6565411c01f5703bd3cb","affectsGlobalScope":true},"6de4a219df57d2b27274d59b67708f13c2cbf7ed211abe57d8f9ab8b25cde776","0fe8985a28f82c450a04a6edf1279d7181c0893f37da7d2a27f8efd4fd5edb03","e59a892d87e72733e2a9ca21611b9beb52977be2696c7ba4b216cbbb9a48f5aa",{"version":"da26af7362f53d122283bc69fed862b9a9fe27e01bc6a69d1d682e0e5a4df3e6","affectsGlobalScope":true},"8a300fa9b698845a1f9c41ecbe2c5966634582a8e2020d51abcace9b55aa959e",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"d8d555f3d607ecaa18d55de6995ea8f206342ecc93305919eac945c7c78c78c6","2b93035328f7778d200252681c1d86285d501ed424825a18f81e4c3028aa51d9","2ac9c8332c5f8510b8bdd571f8271e0f39b0577714d5e95c1e79a12b2616f069","42c21aa963e7b86fa00801d96e88b36803188018d5ad91db2a9101bccd40b3ff","d31eb848cdebb4c55b4893b335a7c0cca95ad66dee13cbb7d0893810c0a9c301","77c1d91a129ba60b8c405f9f539e42df834afb174fe0785f89d92a2c7c16b77a","7a9e0a564fee396cacf706523b5aeed96e04c6b871a8bebefad78499fbffc5bc","906c751ef5822ec0dadcea2f0e9db64a33fb4ee926cc9f7efa38afe5d5371b2a","5387c049e9702f2d2d7ece1a74836a14b47fbebe9bbeb19f94c580a37c855351","c68391fb9efad5d99ff332c65b1606248c4e4a9f1dd9a087204242b56c7126d6","e9cf02252d3a0ced987d24845dcb1f11c1be5541f17e5daa44c6de2d18138d0c","e8b02b879754d85f48489294f99147aeccc352c760d95a6fe2b6e49cd400b2fe","9f6908ab3d8a86c68b86e38578afc7095114e66b2fc36a2a96e9252aac3998e0","0eedb2344442b143ddcd788f87096961cd8572b64f10b4afc3356aa0460171c6","71405cc70f183d029cc5018375f6c35117ffdaf11846c35ebf85ee3956b1b2a6","c68baff4d8ba346130e9753cefe2e487a16731bf17e05fdacc81e8c9a26aae9d","2cd15528d8bb5d0453aa339b4b52e0696e8b07e790c153831c642c3dea5ac8af","479d622e66283ffa9883fbc33e441f7fc928b2277ff30aacbec7b7761b4e9579","ade307876dc5ca267ca308d09e737b611505e015c535863f22420a11fffc1c54","f8cdefa3e0dee639eccbe9794b46f90291e5fd3989fcba60d2f08fde56179fb9","86c5a62f99aac7053976e317dbe9acb2eaf903aaf3d2e5bb1cafe5c2df7b37a8","2b300954ce01a8343866f737656e13243e86e5baef51bd0631b21dcef1f6e954","a2d409a9ffd872d6b9d78ead00baa116bbc73cfa959fce9a2f29d3227876b2a1","b288936f560cd71f4a6002953290de9ff8dfbfbf37f5a9391be5c83322324898","61178a781ef82e0ff54f9430397e71e8f365fc1e3725e0e5346f2de7b0d50dfa","6a6ccb37feb3aad32d9be026a3337db195979cd5727a616fc0f557e974101a54","c649ea79205c029a02272ef55b7ab14ada0903db26144d2205021f24727ac7a3","38e2b02897c6357bbcff729ef84c736727b45cc152abe95a7567caccdfad2a1d","d6610ea7e0b1a7686dba062a1e5544dd7d34140f4545305b7c6afaebfb348341","3dee35db743bdba2c8d19aece7ac049bde6fa587e195d86547c882784e6ba34c","b15e55c5fa977c2f25ca0b1db52cfa2d1fd4bf0baf90a8b90d4a7678ca462ff1","f41d30972724714763a2698ae949fbc463afb203b5fa7c4ad7e4de0871129a17","843dd7b6a7c6269fd43827303f5cbe65c1fecabc30b4670a50d5a15d57daeeb9","f06d8b8567ee9fd799bf7f806efe93b67683ef24f4dea5b23ef12edff4434d9d","6017384f697ff38bc3ef6a546df5b230c3c31329db84cbfe686c83bec011e2b2","e1a5b30d9248549ca0c0bb1d653bafae20c64c4aa5928cc4cd3017b55c2177b0","a593632d5878f17295bd53e1c77f27bf4c15212822f764a2bfc1702f4b413fa0","a868a534ba1c2ca9060b8a13b0ffbbbf78b4be7b0ff80d8c75b02773f7192c29","da7545aba8f54a50fde23e2ede00158dc8112560d934cee58098dfb03aae9b9d","34baf65cfee92f110d6653322e2120c2d368ee64b3c7981dff08ed105c4f19b0","6aee496bf0ecfbf6731aa8cca32f4b6e92cdc0a444911a7d88410408a45ecc5d"],"root":[[44,46]],"options":{"allowSyntheticDefaultImports":true,"alwaysStrict":true,"composite":true,"declaration":true,"declarationMap":true,"esModuleInterop":true,"experimentalDecorators":true,"inlineSourceMap":true,"inlineSources":true,"module":1,"noEmitOnError":false,"noFallthroughCasesInSwitch":false,"noImplicitAny":true,"noImplicitReturns":true,"noImplicitThis":true,"noUnusedLocals":false,"noUnusedParameters":false,"outDir":"./","strict":true,"strictNullChecks":true,"strictPropertyInitialization":false,"target":5},"fileIdsList":[[94],[48,94],[51,94],[52,57,85,94],[53,64,65,72,82,93,94],[53,54,64,72,94],[55,94],[56,57,65,73,94],[57,82,90,94],[58,60,64,72,94],[59,94],[60,61,94],[64,94],[62,64,94],[64,65,66,82,93,94],[64,65,66,79,82,85,94],[94,98],[60,67,72,82,93,94],[64,65,67,68,72,82,90,93,94],[67,69,82,90,93,94],[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],[64,70,94],[71,93,94],[60,64,72,82,94],[73,94],[74,94],[51,75,94],[76,92,94,98],[77,94],[78,94],[64,79,80,94],[79,81,94,96],[52,64,82,83,84,85,94],[52,82,84,94],[82,83,94],[85,94],[86,94],[64,88,89,94],[88,89,94],[57,72,82,90,94],[91,94],[72,92,94],[52,67,78,93,94],[57,94],[82,94,95],[94,96],[94,97],[52,57,64,66,75,82,93,94,96,98],[82,94,99],[94,102,141],[94,102,126,141],[94,141],[94,102],[94,102,127,141],[94,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140],[94,127,141],[65,74,94]],"referencedMap":[[47,1],[48,2],[49,2],[51,3],[52,4],[53,5],[54,6],[55,7],[56,8],[57,9],[58,10],[59,11],[60,12],[61,12],[63,13],[62,14],[64,13],[65,15],[66,16],[50,17],[100,1],[67,18],[68,19],[69,20],[101,21],[70,22],[71,23],[72,24],[73,25],[74,26],[75,27],[76,28],[77,29],[78,30],[79,31],[80,31],[81,32],[82,33],[84,34],[83,35],[85,36],[86,37],[87,1],[88,38],[89,39],[90,40],[91,41],[92,42],[93,43],[94,44],[95,45],[96,46],[97,47],[98,48],[99,49],[126,50],[127,51],[102,52],[105,52],[124,50],[125,50],[115,50],[114,53],[112,50],[107,50],[120,50],[118,50],[122,50],[106,50],[119,50],[123,50],[108,50],[109,50],[121,50],[103,50],[110,50],[111,50],[113,50],[117,50],[128,54],[116,50],[104,50],[141,55],[140,1],[135,54],[137,56],[136,54],[129,54],[130,54],[132,54],[134,54],[138,56],[139,56],[131,56],[133,56],[42,1],[43,1],[9,1],[8,1],[2,1],[10,1],[11,1],[12,1],[13,1],[14,1],[15,1],[16,1],[17,1],[3,1],[4,1],[21,1],[18,1],[19,1],[20,1],[22,1],[23,1],[24,1],[5,1],[25,1],[26,1],[27,1],[28,1],[6,1],[32,1],[29,1],[30,1],[31,1],[33,1],[7,1],[34,1],[39,1],[40,1],[35,1],[36,1],[37,1],[38,1],[1,1],[41,1],[45,1],[46,1],[44,57]],"exportedModulesMap":[[47,1],[48,2],[49,2],[51,3],[52,4],[53,5],[54,6],[55,7],[56,8],[57,9],[58,10],[59,11],[60,12],[61,12],[63,13],[62,14],[64,13],[65,15],[66,16],[50,17],[100,1],[67,18],[68,19],[69,20],[101,21],[70,22],[71,23],[72,24],[73,25],[74,26],[75,27],[76,28],[77,29],[78,30],[79,31],[80,31],[81,32],[82,33],[84,34],[83,35],[85,36],[86,37],[87,1],[88,38],[89,39],[90,40],[91,41],[92,42],[93,43],[94,44],[95,45],[96,46],[97,47],[98,48],[99,49],[126,50],[127,51],[102,52],[105,52],[124,50],[125,50],[115,50],[114,53],[112,50],[107,50],[120,50],[118,50],[122,50],[106,50],[119,50],[123,50],[108,50],[109,50],[121,50],[103,50],[110,50],[111,50],[113,50],[117,50],[128,54],[116,50],[104,50],[141,55],[140,1],[135,54],[137,56],[136,54],[129,54],[130,54],[132,54],[134,54],[138,56],[139,56],[131,56],[133,56],[42,1],[43,1],[9,1],[8,1],[2,1],[10,1],[11,1],[12,1],[13,1],[14,1],[15,1],[16,1],[17,1],[3,1],[4,1],[21,1],[18,1],[19,1],[20,1],[22,1],[23,1],[24,1],[5,1],[25,1],[26,1],[27,1],[28,1],[6,1],[32,1],[29,1],[30,1],[31,1],[33,1],[7,1],[34,1],[39,1],[40,1],[35,1],[36,1],[37,1],[38,1],[1,1],[41,1]],"semanticDiagnosticsPerFile":[47,48,49,51,52,53,54,55,56,57,58,59,60,61,63,62,64,65,66,50,100,67,68,69,101,70,71,72,73,74,75,76,77,78,79,80,81,82,84,83,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,126,127,102,105,124,125,115,114,112,107,120,118,122,106,119,123,108,109,121,103,110,111,113,117,128,116,104,141,140,135,137,136,129,130,132,134,138,139,131,133,42,43,9,8,2,10,11,12,13,14,15,16,17,3,4,21,18,19,20,22,23,24,5,25,26,27,28,6,32,29,30,31,33,7,34,39,40,35,36,37,38,1,41,45,46,44],"latestChangedDtsFile":"./src/__test__/class.d.ts"},"version":"5.0.3"}
|
|
1
|
+
{"program":{"fileNames":["../node_modules/typescript/lib/lib.es5.d.ts","../node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/typescript/lib/lib.es2018.d.ts","../node_modules/typescript/lib/lib.es2019.d.ts","../node_modules/typescript/lib/lib.es2020.d.ts","../node_modules/typescript/lib/lib.es2021.d.ts","../node_modules/typescript/lib/lib.dom.d.ts","../node_modules/typescript/lib/lib.dom.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/typescript/lib/lib.es2019.array.d.ts","../node_modules/typescript/lib/lib.es2019.object.d.ts","../node_modules/typescript/lib/lib.es2019.string.d.ts","../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../node_modules/typescript/lib/lib.es2019.intl.d.ts","../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../node_modules/typescript/lib/lib.es2020.date.d.ts","../node_modules/typescript/lib/lib.es2020.promise.d.ts","../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2020.string.d.ts","../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2020.intl.d.ts","../node_modules/typescript/lib/lib.es2020.number.d.ts","../node_modules/typescript/lib/lib.es2021.promise.d.ts","../node_modules/typescript/lib/lib.es2021.string.d.ts","../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../node_modules/typescript/lib/lib.es2021.intl.d.ts","../node_modules/typescript/lib/lib.esnext.intl.d.ts","../node_modules/typescript/lib/lib.decorators.d.ts","../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../src/install.ts","../src/__test__/class.test.ts","../src/__test__/class.ts","../node_modules/@types/json-schema/index.d.ts","../node_modules/@types/node/assert.d.ts","../node_modules/@types/node/assert/strict.d.ts","../node_modules/@types/node/globals.d.ts","../node_modules/@types/node/async_hooks.d.ts","../node_modules/@types/node/buffer.d.ts","../node_modules/@types/node/child_process.d.ts","../node_modules/@types/node/cluster.d.ts","../node_modules/@types/node/console.d.ts","../node_modules/@types/node/constants.d.ts","../node_modules/@types/node/crypto.d.ts","../node_modules/@types/node/dgram.d.ts","../node_modules/@types/node/diagnostics_channel.d.ts","../node_modules/@types/node/dns.d.ts","../node_modules/@types/node/dns/promises.d.ts","../node_modules/@types/node/domain.d.ts","../node_modules/@types/node/dom-events.d.ts","../node_modules/@types/node/events.d.ts","../node_modules/@types/node/fs.d.ts","../node_modules/@types/node/fs/promises.d.ts","../node_modules/@types/node/http.d.ts","../node_modules/@types/node/http2.d.ts","../node_modules/@types/node/https.d.ts","../node_modules/@types/node/inspector.d.ts","../node_modules/@types/node/module.d.ts","../node_modules/@types/node/net.d.ts","../node_modules/@types/node/os.d.ts","../node_modules/@types/node/path.d.ts","../node_modules/@types/node/perf_hooks.d.ts","../node_modules/@types/node/process.d.ts","../node_modules/@types/node/punycode.d.ts","../node_modules/@types/node/querystring.d.ts","../node_modules/@types/node/readline.d.ts","../node_modules/@types/node/readline/promises.d.ts","../node_modules/@types/node/repl.d.ts","../node_modules/@types/node/stream.d.ts","../node_modules/@types/node/stream/promises.d.ts","../node_modules/@types/node/stream/consumers.d.ts","../node_modules/@types/node/stream/web.d.ts","../node_modules/@types/node/string_decoder.d.ts","../node_modules/@types/node/test.d.ts","../node_modules/@types/node/timers.d.ts","../node_modules/@types/node/timers/promises.d.ts","../node_modules/@types/node/tls.d.ts","../node_modules/@types/node/trace_events.d.ts","../node_modules/@types/node/tty.d.ts","../node_modules/@types/node/url.d.ts","../node_modules/@types/node/util.d.ts","../node_modules/@types/node/v8.d.ts","../node_modules/@types/node/vm.d.ts","../node_modules/@types/node/wasi.d.ts","../node_modules/@types/node/worker_threads.d.ts","../node_modules/@types/node/zlib.d.ts","../node_modules/@types/node/globals.global.d.ts","../node_modules/@types/node/index.d.ts","../node_modules/@types/semver/classes/semver.d.ts","../node_modules/@types/semver/functions/parse.d.ts","../node_modules/@types/semver/functions/valid.d.ts","../node_modules/@types/semver/functions/clean.d.ts","../node_modules/@types/semver/functions/inc.d.ts","../node_modules/@types/semver/functions/diff.d.ts","../node_modules/@types/semver/functions/major.d.ts","../node_modules/@types/semver/functions/minor.d.ts","../node_modules/@types/semver/functions/patch.d.ts","../node_modules/@types/semver/functions/prerelease.d.ts","../node_modules/@types/semver/functions/compare.d.ts","../node_modules/@types/semver/functions/rcompare.d.ts","../node_modules/@types/semver/functions/compare-loose.d.ts","../node_modules/@types/semver/functions/compare-build.d.ts","../node_modules/@types/semver/functions/sort.d.ts","../node_modules/@types/semver/functions/rsort.d.ts","../node_modules/@types/semver/functions/gt.d.ts","../node_modules/@types/semver/functions/lt.d.ts","../node_modules/@types/semver/functions/eq.d.ts","../node_modules/@types/semver/functions/neq.d.ts","../node_modules/@types/semver/functions/gte.d.ts","../node_modules/@types/semver/functions/lte.d.ts","../node_modules/@types/semver/functions/cmp.d.ts","../node_modules/@types/semver/functions/coerce.d.ts","../node_modules/@types/semver/classes/comparator.d.ts","../node_modules/@types/semver/classes/range.d.ts","../node_modules/@types/semver/functions/satisfies.d.ts","../node_modules/@types/semver/ranges/max-satisfying.d.ts","../node_modules/@types/semver/ranges/min-satisfying.d.ts","../node_modules/@types/semver/ranges/to-comparators.d.ts","../node_modules/@types/semver/ranges/min-version.d.ts","../node_modules/@types/semver/ranges/valid.d.ts","../node_modules/@types/semver/ranges/outside.d.ts","../node_modules/@types/semver/ranges/gtr.d.ts","../node_modules/@types/semver/ranges/ltr.d.ts","../node_modules/@types/semver/ranges/intersects.d.ts","../node_modules/@types/semver/ranges/simplify.d.ts","../node_modules/@types/semver/ranges/subset.d.ts","../node_modules/@types/semver/internals/identifiers.d.ts","../node_modules/@types/semver/index.d.ts"],"fileInfos":[{"version":"6a6b471e7e43e15ef6f8fe617a22ce4ecb0e34efa6c3dfcfe7cebd392bcca9d2","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"dc48272d7c333ccf58034c0026162576b7d50ea0e69c3b9292f803fc20720fd5","impliedFormat":1},{"version":"27147504487dc1159369da4f4da8a26406364624fa9bc3db632f7d94a5bae2c3","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"fcd3ecc9f764f06f4d5c467677f4f117f6abf49dee6716283aa204ff1162498b","affectsGlobalScope":true,"impliedFormat":1},{"version":"9a60b92bca4c1257db03b349d58e63e4868cfc0d1c8d0ba60c2dbc63f4e6c9f6","affectsGlobalScope":true,"impliedFormat":1},{"version":"f296963760430fb65b4e5d91f0ed770a91c6e77455bacf8fa23a1501654ede0e","affectsGlobalScope":true,"impliedFormat":1},{"version":"5114a95689b63f96b957e00216bc04baf9e1a1782aa4d8ee7e5e9acbf768e301","affectsGlobalScope":true,"impliedFormat":1},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab22100fdd0d24cfc2cc59d0a00fc8cf449830d9c4030dc54390a46bd562e929","affectsGlobalScope":true,"impliedFormat":1},{"version":"f7bd636ae3a4623c503359ada74510c4005df5b36de7f23e1db8a5c543fd176b","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"0c20f4d2358eb679e4ae8a4432bdd96c857a2960fd6800b21ec4008ec59d60ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"36ae84ccc0633f7c0787bc6108386c8b773e95d3b052d9464a99cd9b8795fbec","affectsGlobalScope":true,"impliedFormat":1},{"version":"82d0d8e269b9eeac02c3bd1c9e884e85d483fcb2cd168bccd6bc54df663da031","affectsGlobalScope":true,"impliedFormat":1},{"version":"b8deab98702588840be73d67f02412a2d45a417a3c097b2e96f7f3a42ac483d1","affectsGlobalScope":true,"impliedFormat":1},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"376d554d042fb409cb55b5cbaf0b2b4b7e669619493c5d18d5fa8bd67273f82a","affectsGlobalScope":true,"impliedFormat":1},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true,"impliedFormat":1},{"version":"c4138a3dd7cd6cf1f363ca0f905554e8d81b45844feea17786cdf1626cb8ea06","affectsGlobalScope":true,"impliedFormat":1},{"version":"6ff3e2452b055d8f0ec026511c6582b55d935675af67cdb67dd1dc671e8065df","affectsGlobalScope":true,"impliedFormat":1},{"version":"03de17b810f426a2f47396b0b99b53a82c1b60e9cba7a7edda47f9bb077882f4","affectsGlobalScope":true,"impliedFormat":1},{"version":"8184c6ddf48f0c98429326b428478ecc6143c27f79b79e85740f17e6feb090f1","affectsGlobalScope":true,"impliedFormat":1},{"version":"261c4d2cf86ac5a89ad3fb3fafed74cbb6f2f7c1d139b0540933df567d64a6ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"6af1425e9973f4924fca986636ac19a0cf9909a7e0d9d3009c349e6244e957b6","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"15a630d6817718a2ddd7088c4f83e4673fde19fa992d2eae2cf51132a302a5d3","affectsGlobalScope":true,"impliedFormat":1},{"version":"b7e9f95a7387e3f66be0ed6db43600c49cec33a3900437ce2fd350d9b7cb16f2","affectsGlobalScope":true,"impliedFormat":1},{"version":"01e0ee7e1f661acedb08b51f8a9b7d7f959e9cdb6441360f06522cc3aea1bf2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac17a97f816d53d9dd79b0d235e1c0ed54a8cc6a0677e9a3d61efb480b2a3e4e","affectsGlobalScope":true,"impliedFormat":1},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true,"impliedFormat":1},{"version":"ec0104fee478075cb5171e5f4e3f23add8e02d845ae0165bfa3f1099241fa2aa","affectsGlobalScope":true,"impliedFormat":1},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true,"impliedFormat":1},{"version":"9cc66b0513ad41cb5f5372cca86ef83a0d37d1c1017580b7dace3ea5661836df","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"709efdae0cb5df5f49376cde61daacc95cdd44ae4671da13a540da5088bf3f30","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"61ed9b6d07af959e745fb11f9593ecd743b279418cc8a99448ea3cd5f3b3eb22","affectsGlobalScope":true,"impliedFormat":1},{"version":"038a2f66a34ee7a9c2fbc3584c8ab43dff2995f8c68e3f566f4c300d2175e31e","affectsGlobalScope":true,"impliedFormat":1},{"version":"307c8b7ebbd7f23a92b73a4c6c0a697beca05b06b036c23a34553e5fe65e4fdc","affectsGlobalScope":true,"impliedFormat":1},{"version":"189c0703923150aa30673fa3de411346d727cc44a11c75d05d7cf9ef095daa22","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"3185f8c3cefc6f9dd355d88677d7d71870ab29ba8e7c4d803a612c051312469c","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","impliedFormat":99},{"version":"6608f6c120449a28d246ab69b2cc558b4a68d62d647bfbc38de1a44b10153cce","signature":"5885b091ce30919d04a9e83f5069c1ebe089164980b36a3afbac37151acb6adc","impliedFormat":99},{"version":"95238be6506c0992f16416c5fa5d3093ac7f67801de14a719a3abff6d75a19a6","signature":"dd8ba7247da63d6e1c9eb0ad4d040bc110cb482c94c206626d8f96388dcd88b9","impliedFormat":99},{"version":"0359682c54e487c4cab2b53b2b4d35cc8dea4d9914bc6abcdb5701f8b8e745a4","impliedFormat":1},{"version":"7e771891adaa85b690266bc37bd6eb43bc57eecc4b54693ead36467e7369952a","impliedFormat":1},{"version":"a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a","impliedFormat":1},{"version":"57b6cb95756d1fe3bfeb20205de27b0c5406e4a86e130c6dfa6bd92af641e09d","affectsGlobalScope":true,"impliedFormat":1},{"version":"11e2d554398d2bd460e7d06b2fa5827a297c8acfbe00b4f894a224ac0862857f","impliedFormat":1},{"version":"e193e634a99c9c1d71f1c6e4e1567a4a73584328d21ea02dd5cddbaad6693f61","affectsGlobalScope":true,"impliedFormat":1},{"version":"374ca798f244e464346f14301dc2a8b4b111af1a83b49fffef5906c338a1f922","impliedFormat":1},{"version":"5a94487653355b56018122d92392beb2e5f4a6c63ba5cef83bbe1c99775ef713","impliedFormat":1},{"version":"d5135ad93b33adcce80b18f8065087934cdc1730d63db58562edcf017e1aad9b","affectsGlobalScope":true,"impliedFormat":1},{"version":"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","impliedFormat":1},{"version":"e596c9bb2f29a2699fdd4ae89139612652245192f67f45617c5a4b20832aaae9","impliedFormat":1},{"version":"bb9c4ffa5e6290c6980b63c815cdd1625876dadb2efaf77edbe82984be93e55e","impliedFormat":1},{"version":"1cdcfc1f624d6c08aa12c73935f6e13f095919cd99edf95752951796eb225729","impliedFormat":1},{"version":"216717f17c095cde1dc19375e1ab3af0a4a485355860c077a4f9d6ea59fab5b5","impliedFormat":1},{"version":"14b5aa23c5d0ae1907bc696ac7b6915d88f7d85799cc0dc2dcf98fbce2c5a67c","impliedFormat":1},{"version":"5c439dafdc09abe4d6c260a96b822fa0ba5be7203c71a63ab1f1423cd9e838ea","impliedFormat":1},{"version":"6b526a5ec4a401ca7c26cfe6a48e641d8f30af76673bad3b06a1b4504594a960","affectsGlobalScope":true,"impliedFormat":1},{"version":"816ad2e607a96de5bcac7d437f843f5afd8957f1fa5eefa6bba8e4ed7ca8fd84","affectsGlobalScope":true,"impliedFormat":1},{"version":"80473bd0dd90ca1e166514c2dfead9d5803f9c51418864ca35abbeec6e6847e1","impliedFormat":1},{"version":"1c84b46267610a34028edfd0d035509341751262bac1062857f3c8df7aff7153","impliedFormat":1},{"version":"e6c86d83bd526c8bdb5d0bf935b8e72ce983763d600743f74d812fdf4abf4df6","impliedFormat":1},{"version":"a3d541d303ee505053f5dcbf9fafb65cac3d5631037501cd616195863a6c5740","impliedFormat":1},{"version":"8d3c583a07e0c37e876908c2d5da575019f689df8d9fa4c081d99119d53dba22","impliedFormat":1},{"version":"2c828a5405191d006115ab34e191b8474bc6c86ffdc401d1a9864b1b6e088a58","impliedFormat":1},{"version":"e630e5528e899219ae319e83bef54bf3bcb91b01d76861ecf881e8e614b167f0","affectsGlobalScope":true,"impliedFormat":1},{"version":"bcebb922784739bdb34c18ee51095d25a92b560c78ccd2eaacd6bd00f7443d83","impliedFormat":1},{"version":"7ee6ed878c4528215c82b664fe0cfe80e8b4da6c0d4cc80869367868774db8b1","impliedFormat":1},{"version":"b0973c3cbcdc59b37bf477731d468696ecaf442593ec51bab497a613a580fe30","impliedFormat":1},{"version":"4989e92ba5b69b182d2caaea6295af52b7dc73a4f7a2e336a676722884e7139d","affectsGlobalScope":true,"impliedFormat":1},{"version":"0715e4cd28ad471b2a93f3e552ff51a3ae423417a01a10aa1d3bc7c6b95059d6","affectsGlobalScope":true,"impliedFormat":1},{"version":"5153a2fd150e46ce57bb3f8db1318d33f6ad3261ed70ceeff92281c0608c74a3","impliedFormat":1},{"version":"210d54cd652ec0fec8c8916e4af59bb341065576ecda039842f9ffb2e908507c","impliedFormat":1},{"version":"36b03690b628eab08703d63f04eaa89c5df202e5f1edf3989f13ad389cd2c091","impliedFormat":1},{"version":"0effadd232a20498b11308058e334d3339cc5bf8c4c858393e38d9d4c0013dcf","impliedFormat":1},{"version":"25846d43937c672bab7e8195f3d881f93495df712ee901860effc109918938cc","impliedFormat":1},{"version":"7d55d78cd47cf5280643b53434b16c2d9d11d144126932759fbdd51da525eec4","impliedFormat":1},{"version":"1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff","impliedFormat":1},{"version":"69ee23dd0d215b09907ad30d23f88b7790c93329d1faf31d7835552a10cf7cbf","impliedFormat":1},{"version":"44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","impliedFormat":1},{"version":"23b89798789dffbd437c0c423f5d02d11f9736aea73d6abf16db4f812ff36eda","impliedFormat":1},{"version":"f69ff39996a61a0dd10f4bce73272b52e8024a4d58b13ab32bf4712909d0a2b7","impliedFormat":1},{"version":"3c4ba1dd9b12ffa284b565063108f2f031d150ea15b8fafbdc17f5d2a07251f3","affectsGlobalScope":true,"impliedFormat":1},{"version":"e10177274a35a9d07c825615340b2fcde2f610f53f3fb40269fd196b4288dda6","impliedFormat":1},{"version":"c4577fb855ca259bdbf3ea663ca73988ce5f84251a92b4aef80a1f4122b6f98e","impliedFormat":1},{"version":"3c13ef48634e7b5012fcf7e8fce7496352c2d779a7201389ca96a2a81ee4314d","impliedFormat":1},{"version":"5d0a25ec910fa36595f85a67ac992d7a53dd4064a1ba6aea1c9f14ab73a023f2","impliedFormat":1},{"version":"f0900cd5d00fe1263ff41201fb8073dbeb984397e4af3b8002a5c207a30bdc33","affectsGlobalScope":true,"impliedFormat":1},{"version":"ff07a9a03c65732ccc59b3c65bc584173da093bd563a6565411c01f5703bd3cb","affectsGlobalScope":true,"impliedFormat":1},{"version":"6de4a219df57d2b27274d59b67708f13c2cbf7ed211abe57d8f9ab8b25cde776","impliedFormat":1},{"version":"0fe8985a28f82c450a04a6edf1279d7181c0893f37da7d2a27f8efd4fd5edb03","impliedFormat":1},{"version":"e59a892d87e72733e2a9ca21611b9beb52977be2696c7ba4b216cbbb9a48f5aa","impliedFormat":1},{"version":"da26af7362f53d122283bc69fed862b9a9fe27e01bc6a69d1d682e0e5a4df3e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"8a300fa9b698845a1f9c41ecbe2c5966634582a8e2020d51abcace9b55aa959e","impliedFormat":1},{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true,"impliedFormat":1},{"version":"d8d555f3d607ecaa18d55de6995ea8f206342ecc93305919eac945c7c78c78c6","impliedFormat":1},{"version":"2b93035328f7778d200252681c1d86285d501ed424825a18f81e4c3028aa51d9","impliedFormat":1},{"version":"2ac9c8332c5f8510b8bdd571f8271e0f39b0577714d5e95c1e79a12b2616f069","impliedFormat":1},{"version":"42c21aa963e7b86fa00801d96e88b36803188018d5ad91db2a9101bccd40b3ff","impliedFormat":1},{"version":"d31eb848cdebb4c55b4893b335a7c0cca95ad66dee13cbb7d0893810c0a9c301","impliedFormat":1},{"version":"77c1d91a129ba60b8c405f9f539e42df834afb174fe0785f89d92a2c7c16b77a","impliedFormat":1},{"version":"7a9e0a564fee396cacf706523b5aeed96e04c6b871a8bebefad78499fbffc5bc","impliedFormat":1},{"version":"906c751ef5822ec0dadcea2f0e9db64a33fb4ee926cc9f7efa38afe5d5371b2a","impliedFormat":1},{"version":"5387c049e9702f2d2d7ece1a74836a14b47fbebe9bbeb19f94c580a37c855351","impliedFormat":1},{"version":"c68391fb9efad5d99ff332c65b1606248c4e4a9f1dd9a087204242b56c7126d6","impliedFormat":1},{"version":"e9cf02252d3a0ced987d24845dcb1f11c1be5541f17e5daa44c6de2d18138d0c","impliedFormat":1},{"version":"e8b02b879754d85f48489294f99147aeccc352c760d95a6fe2b6e49cd400b2fe","impliedFormat":1},{"version":"9f6908ab3d8a86c68b86e38578afc7095114e66b2fc36a2a96e9252aac3998e0","impliedFormat":1},{"version":"0eedb2344442b143ddcd788f87096961cd8572b64f10b4afc3356aa0460171c6","impliedFormat":1},{"version":"71405cc70f183d029cc5018375f6c35117ffdaf11846c35ebf85ee3956b1b2a6","impliedFormat":1},{"version":"c68baff4d8ba346130e9753cefe2e487a16731bf17e05fdacc81e8c9a26aae9d","impliedFormat":1},{"version":"2cd15528d8bb5d0453aa339b4b52e0696e8b07e790c153831c642c3dea5ac8af","impliedFormat":1},{"version":"479d622e66283ffa9883fbc33e441f7fc928b2277ff30aacbec7b7761b4e9579","impliedFormat":1},{"version":"ade307876dc5ca267ca308d09e737b611505e015c535863f22420a11fffc1c54","impliedFormat":1},{"version":"f8cdefa3e0dee639eccbe9794b46f90291e5fd3989fcba60d2f08fde56179fb9","impliedFormat":1},{"version":"86c5a62f99aac7053976e317dbe9acb2eaf903aaf3d2e5bb1cafe5c2df7b37a8","impliedFormat":1},{"version":"2b300954ce01a8343866f737656e13243e86e5baef51bd0631b21dcef1f6e954","impliedFormat":1},{"version":"a2d409a9ffd872d6b9d78ead00baa116bbc73cfa959fce9a2f29d3227876b2a1","impliedFormat":1},{"version":"b288936f560cd71f4a6002953290de9ff8dfbfbf37f5a9391be5c83322324898","impliedFormat":1},{"version":"61178a781ef82e0ff54f9430397e71e8f365fc1e3725e0e5346f2de7b0d50dfa","impliedFormat":1},{"version":"6a6ccb37feb3aad32d9be026a3337db195979cd5727a616fc0f557e974101a54","impliedFormat":1},{"version":"c649ea79205c029a02272ef55b7ab14ada0903db26144d2205021f24727ac7a3","impliedFormat":1},{"version":"38e2b02897c6357bbcff729ef84c736727b45cc152abe95a7567caccdfad2a1d","impliedFormat":1},{"version":"d6610ea7e0b1a7686dba062a1e5544dd7d34140f4545305b7c6afaebfb348341","impliedFormat":1},{"version":"3dee35db743bdba2c8d19aece7ac049bde6fa587e195d86547c882784e6ba34c","impliedFormat":1},{"version":"b15e55c5fa977c2f25ca0b1db52cfa2d1fd4bf0baf90a8b90d4a7678ca462ff1","impliedFormat":1},{"version":"f41d30972724714763a2698ae949fbc463afb203b5fa7c4ad7e4de0871129a17","impliedFormat":1},{"version":"843dd7b6a7c6269fd43827303f5cbe65c1fecabc30b4670a50d5a15d57daeeb9","impliedFormat":1},{"version":"f06d8b8567ee9fd799bf7f806efe93b67683ef24f4dea5b23ef12edff4434d9d","impliedFormat":1},{"version":"6017384f697ff38bc3ef6a546df5b230c3c31329db84cbfe686c83bec011e2b2","impliedFormat":1},{"version":"e1a5b30d9248549ca0c0bb1d653bafae20c64c4aa5928cc4cd3017b55c2177b0","impliedFormat":1},{"version":"a593632d5878f17295bd53e1c77f27bf4c15212822f764a2bfc1702f4b413fa0","impliedFormat":1},{"version":"a868a534ba1c2ca9060b8a13b0ffbbbf78b4be7b0ff80d8c75b02773f7192c29","impliedFormat":1},{"version":"da7545aba8f54a50fde23e2ede00158dc8112560d934cee58098dfb03aae9b9d","impliedFormat":1},{"version":"34baf65cfee92f110d6653322e2120c2d368ee64b3c7981dff08ed105c4f19b0","impliedFormat":1},{"version":"6aee496bf0ecfbf6731aa8cca32f4b6e92cdc0a444911a7d88410408a45ecc5d","impliedFormat":1}],"root":[[51,53]],"options":{"allowSyntheticDefaultImports":true,"composite":true,"declaration":true,"jsx":2,"module":100,"newLine":1,"noEmitOnError":true,"noFallthroughCasesInSwitch":true,"noImplicitOverride":true,"noImplicitReturns":true,"noPropertyAccessFromIndexSignature":true,"noUncheckedIndexedAccess":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./","skipLibCheck":true,"sourceMap":true,"strict":true,"stripInternal":true,"target":8,"useDefineForClassFields":true},"fileIdsList":[[101],[55,101],[58,101],[59,64,92,101],[60,71,72,79,89,100,101],[60,61,71,79,101],[62,101],[63,64,72,80,101],[64,89,97,101],[65,67,71,79,101],[66,101],[67,68,101],[71,101],[69,71,101],[71,72,73,89,100,101],[71,72,73,86,89,92,101],[101,105],[67,74,79,89,100,101],[71,72,74,75,79,89,97,100,101],[74,76,89,97,100,101],[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],[71,77,101],[78,100,101],[67,71,79,89,101],[80,101],[81,101],[58,82,101],[83,99,101,105],[84,101],[85,101],[71,86,87,101],[86,88,101,103],[59,71,89,90,91,92,101],[59,89,91,101],[89,90,101],[92,101],[93,101],[71,95,96,101],[95,96,101],[64,79,89,97,101],[98,101],[79,99,101],[59,74,85,100,101],[64,101],[89,101,102],[101,103],[101,104],[59,64,71,73,82,89,100,101,103,105],[89,101,106],[101,109,148],[101,109,133,148],[101,148],[101,109],[101,109,134,148],[101,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147],[101,134,148],[72,81,101]],"referencedMap":[[54,1],[55,2],[56,2],[58,3],[59,4],[60,5],[61,6],[62,7],[63,8],[64,9],[65,10],[66,11],[67,12],[68,12],[70,13],[69,14],[71,13],[72,15],[73,16],[57,17],[107,1],[74,18],[75,19],[76,20],[108,21],[77,22],[78,23],[79,24],[80,25],[81,26],[82,27],[83,28],[84,29],[85,30],[86,31],[87,31],[88,32],[89,33],[91,34],[90,35],[92,36],[93,37],[94,1],[95,38],[96,39],[97,40],[98,41],[99,42],[100,43],[101,44],[102,45],[103,46],[104,47],[105,48],[106,49],[133,50],[134,51],[109,52],[112,52],[131,50],[132,50],[122,50],[121,53],[119,50],[114,50],[127,50],[125,50],[129,50],[113,50],[126,50],[130,50],[115,50],[116,50],[128,50],[110,50],[117,50],[118,50],[120,50],[124,50],[135,54],[123,50],[111,50],[148,55],[147,1],[142,54],[144,56],[143,54],[136,54],[137,54],[139,54],[141,54],[145,56],[146,56],[138,56],[140,56],[49,1],[50,1],[9,1],[10,1],[12,1],[11,1],[2,1],[13,1],[14,1],[15,1],[16,1],[17,1],[18,1],[19,1],[20,1],[3,1],[4,1],[24,1],[21,1],[22,1],[23,1],[25,1],[26,1],[27,1],[5,1],[28,1],[29,1],[30,1],[31,1],[6,1],[35,1],[32,1],[33,1],[34,1],[36,1],[7,1],[37,1],[42,1],[43,1],[38,1],[39,1],[40,1],[41,1],[8,1],[47,1],[44,1],[45,1],[46,1],[1,1],[48,1],[52,1],[53,1],[51,57]],"exportedModulesMap":[[54,1],[55,2],[56,2],[58,3],[59,4],[60,5],[61,6],[62,7],[63,8],[64,9],[65,10],[66,11],[67,12],[68,12],[70,13],[69,14],[71,13],[72,15],[73,16],[57,17],[107,1],[74,18],[75,19],[76,20],[108,21],[77,22],[78,23],[79,24],[80,25],[81,26],[82,27],[83,28],[84,29],[85,30],[86,31],[87,31],[88,32],[89,33],[91,34],[90,35],[92,36],[93,37],[94,1],[95,38],[96,39],[97,40],[98,41],[99,42],[100,43],[101,44],[102,45],[103,46],[104,47],[105,48],[106,49],[133,50],[134,51],[109,52],[112,52],[131,50],[132,50],[122,50],[121,53],[119,50],[114,50],[127,50],[125,50],[129,50],[113,50],[126,50],[130,50],[115,50],[116,50],[128,50],[110,50],[117,50],[118,50],[120,50],[124,50],[135,54],[123,50],[111,50],[148,55],[147,1],[142,54],[144,56],[143,54],[136,54],[137,54],[139,54],[141,54],[145,56],[146,56],[138,56],[140,56],[49,1],[50,1],[9,1],[10,1],[12,1],[11,1],[2,1],[13,1],[14,1],[15,1],[16,1],[17,1],[18,1],[19,1],[20,1],[3,1],[4,1],[24,1],[21,1],[22,1],[23,1],[25,1],[26,1],[27,1],[5,1],[28,1],[29,1],[30,1],[31,1],[6,1],[35,1],[32,1],[33,1],[34,1],[36,1],[7,1],[37,1],[42,1],[43,1],[38,1],[39,1],[40,1],[41,1],[8,1],[47,1],[44,1],[45,1],[46,1],[1,1],[48,1]],"semanticDiagnosticsPerFile":[54,55,56,58,59,60,61,62,63,64,65,66,67,68,70,69,71,72,73,57,107,74,75,76,108,77,78,79,80,81,82,83,84,85,86,87,88,89,91,90,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,133,134,109,112,131,132,122,121,119,114,127,125,129,113,126,130,115,116,128,110,117,118,120,124,135,123,111,148,147,142,144,143,136,137,139,141,145,146,138,140,49,50,9,10,12,11,2,13,14,15,16,17,18,19,20,3,4,24,21,22,23,25,26,27,5,28,29,30,31,6,35,32,33,34,36,7,37,42,43,38,39,40,41,8,47,44,45,46,1,48,52,53,51],"latestChangedDtsFile":"./src/__test__/class.d.ts"},"version":"5.0.4"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = { ...require('@linzjs/style/.eslintrc.cjs') };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = { ...require('@linzjs/style/.prettierrc.cjs') };
|
package/config/tsconfig.json
CHANGED
package/package.json
CHANGED
|
@@ -1,17 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@linzjs/style",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "4.0.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"repository": "github:linz/style-js",
|
|
6
6
|
"bin": {
|
|
7
|
-
"linz-style-install": "linz-style-install"
|
|
7
|
+
"linz-style-install": "linz-style-install.mjs"
|
|
8
8
|
},
|
|
9
|
+
"type": "module",
|
|
9
10
|
"files": [
|
|
10
11
|
"build",
|
|
11
12
|
"config",
|
|
12
|
-
"linz-style-install",
|
|
13
|
-
".eslintrc.
|
|
14
|
-
".prettierrc.
|
|
13
|
+
"linz-style-install.mjs",
|
|
14
|
+
".eslintrc.cjs",
|
|
15
|
+
".prettierrc.cjs",
|
|
15
16
|
"tsconfig.json",
|
|
16
17
|
"tsconfig.base.json"
|
|
17
18
|
],
|
|
@@ -25,11 +26,11 @@
|
|
|
25
26
|
"dependencies": {
|
|
26
27
|
"@typescript-eslint/eslint-plugin": "^5.57.0",
|
|
27
28
|
"@typescript-eslint/parser": "^5.57.0",
|
|
28
|
-
"eslint": "^8.
|
|
29
|
+
"eslint": "^8.39.0",
|
|
29
30
|
"eslint-config-prettier": "^8.8.0",
|
|
30
31
|
"eslint-plugin-prettier": "^4.2.1",
|
|
31
32
|
"prettier": "^2.8.7",
|
|
32
|
-
"typescript": "^5.0.
|
|
33
|
+
"typescript": "^5.0.4"
|
|
33
34
|
},
|
|
34
35
|
"publishConfig": {
|
|
35
36
|
"access": "public"
|
package/tsconfig.base.json
CHANGED
|
@@ -1,28 +1,36 @@
|
|
|
1
1
|
{
|
|
2
|
+
// ESM tsconfig based off https://github.com/sindresorhus/tsconfig/blob/main/tsconfig.json
|
|
2
3
|
"compilerOptions": {
|
|
3
4
|
"composite": true,
|
|
4
|
-
|
|
5
|
-
"
|
|
6
|
-
"
|
|
5
|
+
// ESM Modules for node16+
|
|
6
|
+
"target": "ES2021",
|
|
7
|
+
"module": "Node16",
|
|
8
|
+
"moduleResolution": "Node16",
|
|
9
|
+
"moduleDetection": "force",
|
|
10
|
+
// To provide backwards compatibility, Node.js allows you to import most CommonJS packages with a default import. This flag tells TypeScript that it's okay to use import on CommonJS modules.
|
|
11
|
+
"allowSyntheticDefaultImports": true,
|
|
12
|
+
// ESM doesn't yet support JSON modules.
|
|
13
|
+
"resolveJsonModule": false,
|
|
14
|
+
// Include no libs by default
|
|
15
|
+
"lib": ["DOM", "DOM.Iterable", "ES2021"],
|
|
16
|
+
"pretty": true,
|
|
17
|
+
"newLine": "lf",
|
|
18
|
+
"jsx": "react",
|
|
7
19
|
"declaration": true,
|
|
8
|
-
"
|
|
20
|
+
"stripInternal": true,
|
|
9
21
|
"strict": true,
|
|
10
|
-
"noImplicitAny": true,
|
|
11
|
-
"strictNullChecks": true,
|
|
12
|
-
"noImplicitThis": true,
|
|
13
|
-
"alwaysStrict": true,
|
|
14
|
-
"noUnusedLocals": false,
|
|
15
|
-
"noUnusedParameters": false,
|
|
16
22
|
"noImplicitReturns": true,
|
|
17
|
-
"
|
|
18
|
-
"
|
|
19
|
-
"
|
|
20
|
-
"
|
|
21
|
-
"
|
|
22
|
-
"
|
|
23
|
-
"
|
|
24
|
-
"
|
|
25
|
-
"
|
|
26
|
-
"
|
|
23
|
+
"noImplicitOverride": true,
|
|
24
|
+
"noUnusedLocals": true,
|
|
25
|
+
"noUnusedParameters": true,
|
|
26
|
+
"noFallthroughCasesInSwitch": true,
|
|
27
|
+
"noUncheckedIndexedAccess": true,
|
|
28
|
+
"noPropertyAccessFromIndexSignature": true,
|
|
29
|
+
"noEmitOnError": true,
|
|
30
|
+
"useDefineForClassFields": true,
|
|
31
|
+
"forceConsistentCasingInFileNames": true,
|
|
32
|
+
"skipLibCheck": true,
|
|
33
|
+
// Additional options outside sindresorhus's base config
|
|
34
|
+
"sourceMap": true
|
|
27
35
|
}
|
|
28
36
|
}
|
package/tsconfig.json
CHANGED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"class.d.ts","sourceRoot":"","sources":["../../../src/__test__/class.ts"],"names":[],"mappings":"AAAA,qBAAa,MAAM;IACjB,IAAI,GAAG,IAAI,MAAM,CAEhB;IAEK,GAAG,IAAI,OAAO,CAAC,MAAM,CAAC;IAI5B;;OAEG;IACH,MAAM,CAAC,GAAG,SAAQ,GAAG,MAAM;CAG5B;AAED,eAAO,MAAM,GAAG,QAAe,CAAC;AAChC,eAAO,MAAM,QAAQ,MAAO,MAAM,KAAG,MAAgC,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"class.test.d.ts","sourceRoot":"","sources":["../../../src/__test__/class.test.ts"],"names":[],"mappings":"AAAA,qBAAa,MAAM;IACjB,IAAI,GAAG,IAAI,MAAM,CAEhB;IAEK,GAAG,IAAI,OAAO,CAAC,MAAM,CAAC;IAK5B,KAAK,CAAC,CAAC,CAAC,EAAE,MAAM,GAAG,MAAM;IAIzB;;OAEG;IACH,MAAM,CAAC,GAAG,SAAQ,GAAG,MAAM;CAG5B;AAED,eAAO,MAAM,GAAG,QAAe,CAAC;AAChC,eAAO,MAAM,QAAQ,MAAO,MAAM,KAAG,MAAgC,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"install.d.ts","sourceRoot":"","sources":["../../src/install.ts"],"names":[],"mappings":""}
|
package/config/eslintrc.js
DELETED
package/config/prettierrc.js
DELETED
package/linz-style-install
DELETED