xo 0.46.0 → 0.46.1

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.
Files changed (1735) hide show
  1. package/node_modules/@nodelib/fs.scandir/LICENSE +21 -0
  2. package/node_modules/@nodelib/fs.scandir/README.md +171 -0
  3. package/node_modules/@nodelib/fs.scandir/out/adapters/fs.d.ts +20 -0
  4. package/node_modules/@nodelib/fs.scandir/out/adapters/fs.js +19 -0
  5. package/node_modules/@nodelib/fs.scandir/out/constants.d.ts +4 -0
  6. package/node_modules/@nodelib/fs.scandir/out/constants.js +17 -0
  7. package/node_modules/@nodelib/fs.scandir/out/index.d.ts +12 -0
  8. package/node_modules/@nodelib/fs.scandir/out/index.js +26 -0
  9. package/node_modules/@nodelib/fs.scandir/out/providers/async.d.ts +7 -0
  10. package/node_modules/@nodelib/fs.scandir/out/providers/async.js +104 -0
  11. package/node_modules/@nodelib/fs.scandir/out/providers/common.d.ts +1 -0
  12. package/node_modules/@nodelib/fs.scandir/out/providers/common.js +13 -0
  13. package/node_modules/@nodelib/fs.scandir/out/providers/sync.d.ts +5 -0
  14. package/node_modules/@nodelib/fs.scandir/out/providers/sync.js +54 -0
  15. package/node_modules/@nodelib/fs.scandir/out/settings.d.ts +20 -0
  16. package/node_modules/@nodelib/fs.scandir/out/settings.js +24 -0
  17. package/node_modules/@nodelib/fs.scandir/out/types/index.d.ts +20 -0
  18. package/node_modules/@nodelib/fs.scandir/out/types/index.js +2 -0
  19. package/node_modules/@nodelib/fs.scandir/out/utils/fs.d.ts +2 -0
  20. package/node_modules/@nodelib/fs.scandir/out/utils/fs.js +19 -0
  21. package/node_modules/@nodelib/fs.scandir/out/utils/index.d.ts +2 -0
  22. package/node_modules/@nodelib/fs.scandir/out/utils/index.js +5 -0
  23. package/node_modules/@nodelib/fs.scandir/package.json +44 -0
  24. package/node_modules/@nodelib/fs.stat/LICENSE +21 -0
  25. package/node_modules/@nodelib/fs.stat/README.md +126 -0
  26. package/node_modules/@nodelib/fs.stat/out/adapters/fs.d.ts +13 -0
  27. package/node_modules/@nodelib/fs.stat/out/adapters/fs.js +17 -0
  28. package/node_modules/@nodelib/fs.stat/out/index.d.ts +12 -0
  29. package/node_modules/@nodelib/fs.stat/out/index.js +26 -0
  30. package/node_modules/@nodelib/fs.stat/out/providers/async.d.ts +4 -0
  31. package/node_modules/@nodelib/fs.stat/out/providers/async.js +36 -0
  32. package/node_modules/@nodelib/fs.stat/out/providers/sync.d.ts +3 -0
  33. package/node_modules/@nodelib/fs.stat/out/providers/sync.js +23 -0
  34. package/node_modules/@nodelib/fs.stat/out/settings.d.ts +16 -0
  35. package/node_modules/@nodelib/fs.stat/out/settings.js +16 -0
  36. package/node_modules/@nodelib/fs.stat/out/types/index.d.ts +4 -0
  37. package/node_modules/@nodelib/fs.stat/out/types/index.js +2 -0
  38. package/node_modules/@nodelib/fs.stat/package.json +37 -0
  39. package/node_modules/@nodelib/fs.walk/LICENSE +21 -0
  40. package/node_modules/@nodelib/fs.walk/README.md +215 -0
  41. package/node_modules/@nodelib/fs.walk/out/index.d.ts +14 -0
  42. package/node_modules/@nodelib/fs.walk/out/index.js +34 -0
  43. package/node_modules/@nodelib/fs.walk/out/providers/async.d.ts +12 -0
  44. package/node_modules/@nodelib/fs.walk/out/providers/async.js +30 -0
  45. package/node_modules/@nodelib/fs.walk/out/providers/index.d.ts +4 -0
  46. package/node_modules/@nodelib/fs.walk/out/providers/index.js +9 -0
  47. package/node_modules/@nodelib/fs.walk/out/providers/stream.d.ts +12 -0
  48. package/node_modules/@nodelib/fs.walk/out/providers/stream.js +34 -0
  49. package/node_modules/@nodelib/fs.walk/out/providers/sync.d.ts +10 -0
  50. package/node_modules/@nodelib/fs.walk/out/providers/sync.js +14 -0
  51. package/node_modules/@nodelib/fs.walk/out/readers/async.d.ts +30 -0
  52. package/node_modules/@nodelib/fs.walk/out/readers/async.js +97 -0
  53. package/node_modules/@nodelib/fs.walk/out/readers/common.d.ts +7 -0
  54. package/node_modules/@nodelib/fs.walk/out/readers/common.js +31 -0
  55. package/node_modules/@nodelib/fs.walk/out/readers/reader.d.ts +6 -0
  56. package/node_modules/@nodelib/fs.walk/out/readers/reader.js +11 -0
  57. package/node_modules/@nodelib/fs.walk/out/readers/sync.d.ts +15 -0
  58. package/node_modules/@nodelib/fs.walk/out/readers/sync.js +59 -0
  59. package/node_modules/@nodelib/fs.walk/out/settings.d.ts +30 -0
  60. package/node_modules/@nodelib/fs.walk/out/settings.js +26 -0
  61. package/node_modules/@nodelib/fs.walk/out/types/index.d.ts +8 -0
  62. package/node_modules/@nodelib/fs.walk/out/types/index.js +2 -0
  63. package/node_modules/@nodelib/fs.walk/package.json +44 -0
  64. package/node_modules/@types/json-schema/LICENSE +21 -0
  65. package/node_modules/@types/json-schema/README.md +16 -0
  66. package/node_modules/@types/json-schema/index.d.ts +751 -0
  67. package/node_modules/@types/json-schema/package.json +45 -0
  68. package/node_modules/@typescript-eslint/eslint-plugin/CHANGELOG.md +2277 -0
  69. package/node_modules/@typescript-eslint/eslint-plugin/LICENSE +21 -0
  70. package/node_modules/@typescript-eslint/eslint-plugin/README.md +239 -0
  71. package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/all.js +167 -0
  72. package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/all.js.map +1 -0
  73. package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/base.js +10 -0
  74. package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/base.js.map +1 -0
  75. package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/eslint-recommended.js +32 -0
  76. package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/eslint-recommended.js.map +1 -0
  77. package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/recommended-requiring-type-checking.js +27 -0
  78. package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/recommended-requiring-type-checking.js.map +1 -0
  79. package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/recommended.js +37 -0
  80. package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/recommended.js.map +1 -0
  81. package/node_modules/@typescript-eslint/eslint-plugin/dist/index.js +21 -0
  82. package/node_modules/@typescript-eslint/eslint-plugin/dist/index.js.map +1 -0
  83. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/adjacent-overload-signatures.js +154 -0
  84. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/adjacent-overload-signatures.js.map +1 -0
  85. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/array-type.js +225 -0
  86. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/array-type.js.map +1 -0
  87. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/await-thenable.js +58 -0
  88. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/await-thenable.js.map +1 -0
  89. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/ban-ts-comment.js +146 -0
  90. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/ban-ts-comment.js.map +1 -0
  91. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/ban-tslint-comment.js +74 -0
  92. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/ban-tslint-comment.js.map +1 -0
  93. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/ban-types.js +191 -0
  94. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/ban-types.js.map +1 -0
  95. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/brace-style.js +92 -0
  96. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/brace-style.js.map +1 -0
  97. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/class-literal-property-style.js +110 -0
  98. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/class-literal-property-style.js.map +1 -0
  99. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/comma-dangle.js +176 -0
  100. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/comma-dangle.js.map +1 -0
  101. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/comma-spacing.js +143 -0
  102. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/comma-spacing.js.map +1 -0
  103. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/consistent-indexed-object-style.js +105 -0
  104. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/consistent-indexed-object-style.js.map +1 -0
  105. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/consistent-type-assertions.js +153 -0
  106. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/consistent-type-assertions.js.map +1 -0
  107. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/consistent-type-definitions.js +119 -0
  108. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/consistent-type-definitions.js.map +1 -0
  109. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/consistent-type-exports.js +217 -0
  110. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/consistent-type-exports.js.map +1 -0
  111. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/consistent-type-imports.js +551 -0
  112. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/consistent-type-imports.js.map +1 -0
  113. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/default-param-last.js +64 -0
  114. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/default-param-last.js.map +1 -0
  115. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/dot-notation.js +121 -0
  116. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/dot-notation.js.map +1 -0
  117. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/explicit-function-return-type.js +96 -0
  118. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/explicit-function-return-type.js.map +1 -0
  119. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/explicit-member-accessibility.js +212 -0
  120. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/explicit-member-accessibility.js.map +1 -0
  121. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/explicit-module-boundary-types.js +418 -0
  122. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/explicit-module-boundary-types.js.map +1 -0
  123. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/func-call-spacing.js +164 -0
  124. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/func-call-spacing.js.map +1 -0
  125. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/indent-new-do-not-use/BinarySearchTree.js +55 -0
  126. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/indent-new-do-not-use/BinarySearchTree.js.map +1 -0
  127. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/indent-new-do-not-use/OffsetStorage.js +221 -0
  128. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/indent-new-do-not-use/OffsetStorage.js.map +1 -0
  129. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/indent-new-do-not-use/TokenInfo.js +49 -0
  130. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/indent-new-do-not-use/TokenInfo.js.map +1 -0
  131. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/indent-new-do-not-use/index.js +1140 -0
  132. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/indent-new-do-not-use/index.js.map +1 -0
  133. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/indent.js +406 -0
  134. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/indent.js.map +1 -0
  135. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/index.js +250 -0
  136. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/index.js.map +1 -0
  137. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/init-declarations.js +41 -0
  138. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/init-declarations.js.map +1 -0
  139. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/keyword-spacing.js +59 -0
  140. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/keyword-spacing.js.map +1 -0
  141. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/lines-between-class-members.js +73 -0
  142. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/lines-between-class-members.js.map +1 -0
  143. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/member-delimiter-style.js +242 -0
  144. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/member-delimiter-style.js.map +1 -0
  145. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/member-ordering.js +529 -0
  146. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/member-ordering.js.map +1 -0
  147. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/method-signature-style.js +194 -0
  148. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/method-signature-style.js.map +1 -0
  149. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/enums.js +94 -0
  150. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/enums.js.map +1 -0
  151. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/format.js +91 -0
  152. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/format.js.map +1 -0
  153. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/index.js +12 -0
  154. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/index.js.map +1 -0
  155. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/parse-options.js +90 -0
  156. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/parse-options.js.map +1 -0
  157. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/schema.js +259 -0
  158. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/schema.js.map +1 -0
  159. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/shared.js +18 -0
  160. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/shared.js.map +1 -0
  161. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/types.js +3 -0
  162. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/types.js.map +1 -0
  163. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/validator.js +371 -0
  164. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/validator.js.map +1 -0
  165. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention.js +430 -0
  166. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention.js.map +1 -0
  167. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-array-constructor.js +71 -0
  168. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-array-constructor.js.map +1 -0
  169. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-base-to-string.js +160 -0
  170. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-base-to-string.js.map +1 -0
  171. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-confusing-non-null-assertion.js +97 -0
  172. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-confusing-non-null-assertion.js.map +1 -0
  173. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-confusing-void-expression.js +272 -0
  174. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-confusing-void-expression.js.map +1 -0
  175. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-dupe-class-members.js +65 -0
  176. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-dupe-class-members.js.map +1 -0
  177. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-duplicate-imports.js +123 -0
  178. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-duplicate-imports.js.map +1 -0
  179. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-dynamic-delete.js +90 -0
  180. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-dynamic-delete.js.map +1 -0
  181. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-empty-function.js +144 -0
  182. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-empty-function.js.map +1 -0
  183. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-empty-interface.js +105 -0
  184. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-empty-interface.js.map +1 -0
  185. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-explicit-any.js +188 -0
  186. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-explicit-any.js.map +1 -0
  187. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-extra-non-null-assertion.js +55 -0
  188. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-extra-non-null-assertion.js.map +1 -0
  189. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-extra-parens.js +200 -0
  190. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-extra-parens.js.map +1 -0
  191. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-extra-semi.js +55 -0
  192. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-extra-semi.js.map +1 -0
  193. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-extraneous-class.js +128 -0
  194. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-extraneous-class.js.map +1 -0
  195. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-floating-promises.js +205 -0
  196. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-floating-promises.js.map +1 -0
  197. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-for-in-array.js +57 -0
  198. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-for-in-array.js.map +1 -0
  199. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-implicit-any-catch.js +98 -0
  200. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-implicit-any-catch.js.map +1 -0
  201. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-implied-eval.js +152 -0
  202. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-implied-eval.js.map +1 -0
  203. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-inferrable-types.js +196 -0
  204. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-inferrable-types.js.map +1 -0
  205. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-invalid-this.js +78 -0
  206. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-invalid-this.js.map +1 -0
  207. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-invalid-void-type.js +183 -0
  208. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-invalid-void-type.js.map +1 -0
  209. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-loop-func.js +191 -0
  210. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-loop-func.js.map +1 -0
  211. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-loss-of-precision.js +56 -0
  212. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-loss-of-precision.js.map +1 -0
  213. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-magic-numbers.js +199 -0
  214. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-magic-numbers.js.map +1 -0
  215. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-meaningless-void-operator.js +93 -0
  216. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-meaningless-void-operator.js.map +1 -0
  217. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-misused-new.js +102 -0
  218. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-misused-new.js.map +1 -0
  219. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-misused-promises.js +236 -0
  220. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-misused-promises.js.map +1 -0
  221. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-namespace.js +80 -0
  222. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-namespace.js.map +1 -0
  223. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-non-null-asserted-nullish-coalescing.js +94 -0
  224. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-non-null-asserted-nullish-coalescing.js.map +1 -0
  225. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-non-null-asserted-optional-chain.js +146 -0
  226. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-non-null-asserted-optional-chain.js.map +1 -0
  227. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-non-null-assertion.js +126 -0
  228. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-non-null-assertion.js.map +1 -0
  229. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-parameter-properties.js +105 -0
  230. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-parameter-properties.js.map +1 -0
  231. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-redeclare.js +219 -0
  232. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-redeclare.js.map +1 -0
  233. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-require-imports.js +60 -0
  234. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-require-imports.js.map +1 -0
  235. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-restricted-imports.js +153 -0
  236. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-restricted-imports.js.map +1 -0
  237. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-shadow.js +344 -0
  238. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-shadow.js.map +1 -0
  239. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-this-alias.js +82 -0
  240. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-this-alias.js.map +1 -0
  241. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-throw-literal.js +103 -0
  242. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-throw-literal.js.map +1 -0
  243. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-type-alias.js +261 -0
  244. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-type-alias.js.map +1 -0
  245. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unnecessary-boolean-literal-compare.js +206 -0
  246. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unnecessary-boolean-literal-compare.js.map +1 -0
  247. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unnecessary-condition.js +474 -0
  248. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unnecessary-condition.js.map +1 -0
  249. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unnecessary-qualifier.js +148 -0
  250. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unnecessary-qualifier.js.map +1 -0
  251. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unnecessary-type-arguments.js +118 -0
  252. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unnecessary-type-arguments.js.map +1 -0
  253. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unnecessary-type-assertion.js +242 -0
  254. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unnecessary-type-assertion.js.map +1 -0
  255. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unnecessary-type-constraint.js +89 -0
  256. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unnecessary-type-constraint.js.map +1 -0
  257. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-argument.js +225 -0
  258. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-argument.js.map +1 -0
  259. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-assignment.js +282 -0
  260. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-assignment.js.map +1 -0
  261. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-call.js +82 -0
  262. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-call.js.map +1 -0
  263. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-member-access.js +122 -0
  264. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-member-access.js.map +1 -0
  265. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-return.js +155 -0
  266. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-return.js.map +1 -0
  267. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unused-expressions.js +74 -0
  268. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unused-expressions.js.map +1 -0
  269. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unused-vars.js +501 -0
  270. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unused-vars.js.map +1 -0
  271. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-use-before-define.js +294 -0
  272. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-use-before-define.js.map +1 -0
  273. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-useless-constructor.js +86 -0
  274. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-useless-constructor.js.map +1 -0
  275. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-var-requires.js +63 -0
  276. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-var-requires.js.map +1 -0
  277. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/non-nullable-type-assertion-style.js +103 -0
  278. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/non-nullable-type-assertion-style.js.map +1 -0
  279. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/object-curly-spacing.js +216 -0
  280. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/object-curly-spacing.js.map +1 -0
  281. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/padding-line-between-statements.js +633 -0
  282. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/padding-line-between-statements.js.map +1 -0
  283. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-as-const.js +88 -0
  284. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-as-const.js.map +1 -0
  285. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-enum-initializers.js +85 -0
  286. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-enum-initializers.js.map +1 -0
  287. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-for-of.js +177 -0
  288. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-for-of.js.map +1 -0
  289. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-function-type.js +207 -0
  290. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-function-type.js.map +1 -0
  291. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-includes.js +207 -0
  292. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-includes.js.map +1 -0
  293. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-literal-enum-member.js +72 -0
  294. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-literal-enum-member.js.map +1 -0
  295. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-namespace-keyword.js +64 -0
  296. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-namespace-keyword.js.map +1 -0
  297. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-nullish-coalescing.js +160 -0
  298. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-nullish-coalescing.js.map +1 -0
  299. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-optional-chain.js +319 -0
  300. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-optional-chain.js.map +1 -0
  301. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-readonly-parameter-types.js +93 -0
  302. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-readonly-parameter-types.js.map +1 -0
  303. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-readonly.js +260 -0
  304. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-readonly.js.map +1 -0
  305. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-reduce-type-parameter.js +96 -0
  306. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-reduce-type-parameter.js.map +1 -0
  307. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-regexp-exec.js +150 -0
  308. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-regexp-exec.js.map +1 -0
  309. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-return-this-type.js +137 -0
  310. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-return-this-type.js.map +1 -0
  311. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-string-starts-ends-with.js +489 -0
  312. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-string-starts-ends-with.js.map +1 -0
  313. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-ts-expect-error.js +80 -0
  314. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-ts-expect-error.js.map +1 -0
  315. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/promise-function-async.js +177 -0
  316. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/promise-function-async.js.map +1 -0
  317. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/quotes.js +85 -0
  318. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/quotes.js.map +1 -0
  319. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/require-array-sort-compare.js +80 -0
  320. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/require-array-sort-compare.js.map +1 -0
  321. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/require-await.js +192 -0
  322. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/require-await.js.map +1 -0
  323. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/restrict-plus-operands.js +131 -0
  324. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/restrict-plus-operands.js.map +1 -0
  325. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/restrict-template-expressions.js +115 -0
  326. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/restrict-template-expressions.js.map +1 -0
  327. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/return-await.js +250 -0
  328. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/return-await.js.map +1 -0
  329. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/semi.js +83 -0
  330. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/semi.js.map +1 -0
  331. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/sort-type-union-intersection-members.js +227 -0
  332. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/sort-type-union-intersection-members.js.map +1 -0
  333. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/space-before-function-paren.js +157 -0
  334. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/space-before-function-paren.js.map +1 -0
  335. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/space-infix-ops.js +143 -0
  336. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/space-infix-ops.js.map +1 -0
  337. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/strict-boolean-expressions.js +701 -0
  338. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/strict-boolean-expressions.js.map +1 -0
  339. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/switch-exhaustiveness-check.js +144 -0
  340. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/switch-exhaustiveness-check.js.map +1 -0
  341. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/triple-slash-reference.js +125 -0
  342. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/triple-slash-reference.js.map +1 -0
  343. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/type-annotation-spacing.js +237 -0
  344. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/type-annotation-spacing.js.map +1 -0
  345. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/typedef.js +196 -0
  346. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/typedef.js.map +1 -0
  347. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/unbound-method.js +281 -0
  348. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/unbound-method.js.map +1 -0
  349. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/unified-signatures.js +395 -0
  350. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/unified-signatures.js.map +1 -0
  351. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/astUtils.js +85 -0
  352. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/astUtils.js.map +1 -0
  353. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/collectUnusedVariables.js +585 -0
  354. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/collectUnusedVariables.js.map +1 -0
  355. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/createRule.js +9 -0
  356. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/createRule.js.map +1 -0
  357. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/escapeRegExp.js +16 -0
  358. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/escapeRegExp.js.map +1 -0
  359. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/explicitReturnTypeUtils.js +195 -0
  360. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/explicitReturnTypeUtils.js.map +1 -0
  361. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/getESLintCoreRule.js +41 -0
  362. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/getESLintCoreRule.js.map +1 -0
  363. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/getFunctionHeadLoc.js +55 -0
  364. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/getFunctionHeadLoc.js.map +1 -0
  365. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/getThisExpression.js +26 -0
  366. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/getThisExpression.js.map +1 -0
  367. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/getWrappingFixer.js +160 -0
  368. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/getWrappingFixer.js.map +1 -0
  369. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/index.js +34 -0
  370. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/index.js.map +1 -0
  371. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/isTypeReadonly.js +165 -0
  372. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/isTypeReadonly.js.map +1 -0
  373. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/misc.js +116 -0
  374. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/misc.js.map +1 -0
  375. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/nullThrows.js +28 -0
  376. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/nullThrows.js.map +1 -0
  377. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/objectIterators.js +27 -0
  378. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/objectIterators.js.map +1 -0
  379. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/propertyTypes.js +23 -0
  380. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/propertyTypes.js.map +1 -0
  381. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/requiresQuoting.js +39 -0
  382. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/requiresQuoting.js.map +1 -0
  383. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/types.js +428 -0
  384. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/types.js.map +1 -0
  385. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/adjacent-overload-signatures.md +95 -0
  386. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/array-type.md +122 -0
  387. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/await-thenable.md +39 -0
  388. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/ban-ts-comment.md +138 -0
  389. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/ban-tslint-comment.md +35 -0
  390. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/ban-types.md +184 -0
  391. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/brace-style.md +28 -0
  392. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/camelcase.md +8 -0
  393. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/class-literal-property-style.md +102 -0
  394. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/comma-dangle.md +40 -0
  395. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/comma-spacing.md +28 -0
  396. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/consistent-indexed-object-style.md +73 -0
  397. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/consistent-type-assertions.md +100 -0
  398. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/consistent-type-definitions.md +80 -0
  399. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/consistent-type-exports.md +34 -0
  400. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/consistent-type-imports.md +70 -0
  401. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/default-param-last.md +62 -0
  402. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/dot-notation.md +89 -0
  403. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/explicit-function-return-type.md +254 -0
  404. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/explicit-member-accessibility.md +354 -0
  405. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/explicit-module-boundary-types.md +275 -0
  406. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/func-call-spacing.md +28 -0
  407. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/indent.md +30 -0
  408. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/init-declarations.md +28 -0
  409. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/keyword-spacing.md +28 -0
  410. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/lines-between-class-members.md +79 -0
  411. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/member-delimiter-style.md +207 -0
  412. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/member-ordering.md +1032 -0
  413. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/method-signature-style.md +100 -0
  414. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/naming-convention.md +702 -0
  415. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-array-constructor.md +49 -0
  416. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-base-to-string.md +93 -0
  417. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-confusing-non-null-assertion.md +52 -0
  418. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-confusing-void-expression.md +155 -0
  419. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-dupe-class-members.md +28 -0
  420. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-duplicate-imports.md +28 -0
  421. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-dynamic-delete.md +55 -0
  422. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-empty-function.md +96 -0
  423. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-empty-interface.md +70 -0
  424. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-explicit-any.md +187 -0
  425. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-extra-non-null-assertion.md +55 -0
  426. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-extra-parens.md +28 -0
  427. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-extra-semi.md +28 -0
  428. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-extraneous-class.md +86 -0
  429. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-floating-promises.md +110 -0
  430. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-for-in-array.md +50 -0
  431. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-implicit-any-catch.md +82 -0
  432. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-implied-eval.md +111 -0
  433. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-inferrable-types.md +152 -0
  434. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-invalid-this.md +32 -0
  435. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-invalid-void-type.md +132 -0
  436. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-loop-func.md +28 -0
  437. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-loss-of-precision.md +25 -0
  438. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-magic-numbers.md +125 -0
  439. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-meaningless-void-operator.md +56 -0
  440. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-misused-new.md +47 -0
  441. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-misused-promises.md +158 -0
  442. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-namespace.md +121 -0
  443. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-non-null-asserted-nullish-coalescing.md +55 -0
  444. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-non-null-asserted-optional-chain.md +54 -0
  445. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-non-null-assertion.md +41 -0
  446. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-parameter-properties.md +373 -0
  447. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-redeclare.md +86 -0
  448. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-require-imports.md +40 -0
  449. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-restricted-imports.md +70 -0
  450. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-shadow.md +93 -0
  451. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-this-alias.md +66 -0
  452. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-throw-literal.md +100 -0
  453. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-type-alias.md +602 -0
  454. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-unnecessary-boolean-literal-compare.md +144 -0
  455. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-unnecessary-condition.md +113 -0
  456. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-unnecessary-qualifier.md +85 -0
  457. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-unnecessary-type-arguments.md +59 -0
  458. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-unnecessary-type-assertion.md +79 -0
  459. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-unnecessary-type-constraint.md +61 -0
  460. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-unsafe-argument.md +75 -0
  461. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-unsafe-assignment.md +78 -0
  462. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-unsafe-call.md +54 -0
  463. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-unsafe-member-access.md +60 -0
  464. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-unsafe-return.md +95 -0
  465. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-unused-expressions.md +28 -0
  466. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-unused-vars.md +28 -0
  467. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-use-before-define.md +110 -0
  468. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-useless-constructor.md +32 -0
  469. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/no-var-requires.md +35 -0
  470. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/non-nullable-type-assertion-style.md +33 -0
  471. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/object-curly-spacing.md +28 -0
  472. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/padding-line-between-statements.md +54 -0
  473. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/prefer-as-const.md +34 -0
  474. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/prefer-enum-initializers.md +76 -0
  475. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/prefer-for-of.md +47 -0
  476. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/prefer-function-type.md +87 -0
  477. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/prefer-includes.md +79 -0
  478. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/prefer-literal-enum-member.md +92 -0
  479. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/prefer-namespace-keyword.md +28 -0
  480. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/prefer-nullish-coalescing.md +147 -0
  481. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/prefer-optional-chain.md +88 -0
  482. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/prefer-readonly-parameter-types.md +263 -0
  483. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/prefer-readonly.md +87 -0
  484. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/prefer-reduce-type-parameter.md +60 -0
  485. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/prefer-regexp-exec.md +57 -0
  486. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/prefer-return-this-type.md +96 -0
  487. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/prefer-string-starts-ends-with.md +60 -0
  488. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/prefer-ts-expect-error.md +71 -0
  489. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/promise-function-async.md +72 -0
  490. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/quotes.md +28 -0
  491. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/require-array-sort-compare.md +91 -0
  492. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/require-await.md +38 -0
  493. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/restrict-plus-operands.md +64 -0
  494. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/restrict-template-expressions.md +108 -0
  495. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/return-await.md +214 -0
  496. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/semi.md +32 -0
  497. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/sort-type-union-intersection-members.md +153 -0
  498. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/space-before-function-paren.md +28 -0
  499. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/space-infix-ops.md +32 -0
  500. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/strict-boolean-expressions.md +200 -0
  501. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/switch-exhaustiveness-check.md +109 -0
  502. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/triple-slash-reference.md +62 -0
  503. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/type-annotation-spacing.md +297 -0
  504. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/typedef.md +314 -0
  505. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/unbound-method.md +120 -0
  506. package/node_modules/@typescript-eslint/eslint-plugin/docs/rules/unified-signatures.md +39 -0
  507. package/node_modules/@typescript-eslint/eslint-plugin/index.d.ts +4 -0
  508. package/node_modules/@typescript-eslint/eslint-plugin/node_modules/ignore/CHANGELOG.md +32 -0
  509. package/node_modules/@typescript-eslint/eslint-plugin/node_modules/ignore/LICENSE-MIT +21 -0
  510. package/node_modules/@typescript-eslint/eslint-plugin/node_modules/ignore/README.md +392 -0
  511. package/node_modules/@typescript-eslint/eslint-plugin/node_modules/ignore/index.d.ts +63 -0
  512. package/node_modules/@typescript-eslint/eslint-plugin/node_modules/ignore/index.js +597 -0
  513. package/node_modules/@typescript-eslint/eslint-plugin/node_modules/ignore/legacy.js +495 -0
  514. package/node_modules/@typescript-eslint/eslint-plugin/node_modules/ignore/package.json +70 -0
  515. package/node_modules/@typescript-eslint/eslint-plugin/package.json +79 -0
  516. package/node_modules/@typescript-eslint/experimental-utils/CHANGELOG.md +1253 -0
  517. package/node_modules/@typescript-eslint/experimental-utils/LICENSE +21 -0
  518. package/node_modules/@typescript-eslint/experimental-utils/README.md +37 -0
  519. package/node_modules/@typescript-eslint/experimental-utils/dist/ast-utils/eslint-utils/PatternMatcher.d.ts +48 -0
  520. package/node_modules/@typescript-eslint/experimental-utils/dist/ast-utils/eslint-utils/PatternMatcher.d.ts.map +1 -0
  521. package/node_modules/@typescript-eslint/experimental-utils/dist/ast-utils/eslint-utils/PatternMatcher.js +32 -0
  522. package/node_modules/@typescript-eslint/experimental-utils/dist/ast-utils/eslint-utils/PatternMatcher.js.map +1 -0
  523. package/node_modules/@typescript-eslint/experimental-utils/dist/ast-utils/eslint-utils/ReferenceTracker.d.ts +76 -0
  524. package/node_modules/@typescript-eslint/experimental-utils/dist/ast-utils/eslint-utils/ReferenceTracker.d.ts.map +1 -0
  525. package/node_modules/@typescript-eslint/experimental-utils/dist/ast-utils/eslint-utils/ReferenceTracker.js +36 -0
  526. package/node_modules/@typescript-eslint/experimental-utils/dist/ast-utils/eslint-utils/ReferenceTracker.js.map +1 -0
  527. package/node_modules/@typescript-eslint/experimental-utils/dist/ast-utils/eslint-utils/astUtilities.d.ts +76 -0
  528. package/node_modules/@typescript-eslint/experimental-utils/dist/ast-utils/eslint-utils/astUtilities.d.ts.map +1 -0
  529. package/node_modules/@typescript-eslint/experimental-utils/dist/ast-utils/eslint-utils/astUtilities.js +95 -0
  530. package/node_modules/@typescript-eslint/experimental-utils/dist/ast-utils/eslint-utils/astUtilities.js.map +1 -0
  531. package/node_modules/@typescript-eslint/experimental-utils/dist/ast-utils/eslint-utils/index.d.ts +6 -0
  532. package/node_modules/@typescript-eslint/experimental-utils/dist/ast-utils/eslint-utils/index.d.ts.map +1 -0
  533. package/node_modules/@typescript-eslint/experimental-utils/dist/ast-utils/eslint-utils/index.js +18 -0
  534. package/node_modules/@typescript-eslint/experimental-utils/dist/ast-utils/eslint-utils/index.js.map +1 -0
  535. package/node_modules/@typescript-eslint/experimental-utils/dist/ast-utils/eslint-utils/predicates.d.ts +32 -0
  536. package/node_modules/@typescript-eslint/experimental-utils/dist/ast-utils/eslint-utils/predicates.d.ts.map +1 -0
  537. package/node_modules/@typescript-eslint/experimental-utils/dist/ast-utils/eslint-utils/predicates.js +68 -0
  538. package/node_modules/@typescript-eslint/experimental-utils/dist/ast-utils/eslint-utils/predicates.js.map +1 -0
  539. package/node_modules/@typescript-eslint/experimental-utils/dist/ast-utils/eslint-utils/scopeAnalysis.d.ts +18 -0
  540. package/node_modules/@typescript-eslint/experimental-utils/dist/ast-utils/eslint-utils/scopeAnalysis.d.ts.map +1 -0
  541. package/node_modules/@typescript-eslint/experimental-utils/dist/ast-utils/eslint-utils/scopeAnalysis.js +40 -0
  542. package/node_modules/@typescript-eslint/experimental-utils/dist/ast-utils/eslint-utils/scopeAnalysis.js.map +1 -0
  543. package/node_modules/@typescript-eslint/experimental-utils/dist/ast-utils/helpers.d.ts +13 -0
  544. package/node_modules/@typescript-eslint/experimental-utils/dist/ast-utils/helpers.d.ts.map +1 -0
  545. package/node_modules/@typescript-eslint/experimental-utils/dist/ast-utils/helpers.js +14 -0
  546. package/node_modules/@typescript-eslint/experimental-utils/dist/ast-utils/helpers.js.map +1 -0
  547. package/node_modules/@typescript-eslint/experimental-utils/dist/ast-utils/index.d.ts +4 -0
  548. package/node_modules/@typescript-eslint/experimental-utils/dist/ast-utils/index.d.ts.map +1 -0
  549. package/node_modules/@typescript-eslint/experimental-utils/dist/ast-utils/index.js +16 -0
  550. package/node_modules/@typescript-eslint/experimental-utils/dist/ast-utils/index.js.map +1 -0
  551. package/node_modules/@typescript-eslint/experimental-utils/dist/ast-utils/misc.d.ts +8 -0
  552. package/node_modules/@typescript-eslint/experimental-utils/dist/ast-utils/misc.d.ts.map +1 -0
  553. package/node_modules/@typescript-eslint/experimental-utils/dist/ast-utils/misc.js +13 -0
  554. package/node_modules/@typescript-eslint/experimental-utils/dist/ast-utils/misc.js.map +1 -0
  555. package/node_modules/@typescript-eslint/experimental-utils/dist/ast-utils/predicates.d.ts +174 -0
  556. package/node_modules/@typescript-eslint/experimental-utils/dist/ast-utils/predicates.d.ts.map +1 -0
  557. package/node_modules/@typescript-eslint/experimental-utils/dist/ast-utils/predicates.js +129 -0
  558. package/node_modules/@typescript-eslint/experimental-utils/dist/ast-utils/predicates.js.map +1 -0
  559. package/node_modules/@typescript-eslint/experimental-utils/dist/eslint-utils/InferTypesFromRule.d.ts +11 -0
  560. package/node_modules/@typescript-eslint/experimental-utils/dist/eslint-utils/InferTypesFromRule.d.ts.map +1 -0
  561. package/node_modules/@typescript-eslint/experimental-utils/dist/eslint-utils/InferTypesFromRule.js +3 -0
  562. package/node_modules/@typescript-eslint/experimental-utils/dist/eslint-utils/InferTypesFromRule.js.map +1 -0
  563. package/node_modules/@typescript-eslint/experimental-utils/dist/eslint-utils/RuleCreator.d.ts +13 -0
  564. package/node_modules/@typescript-eslint/experimental-utils/dist/eslint-utils/RuleCreator.d.ts.map +1 -0
  565. package/node_modules/@typescript-eslint/experimental-utils/dist/eslint-utils/RuleCreator.js +19 -0
  566. package/node_modules/@typescript-eslint/experimental-utils/dist/eslint-utils/RuleCreator.js.map +1 -0
  567. package/node_modules/@typescript-eslint/experimental-utils/dist/eslint-utils/RuleTester.d.ts +18 -0
  568. package/node_modules/@typescript-eslint/experimental-utils/dist/eslint-utils/RuleTester.d.ts.map +1 -0
  569. package/node_modules/@typescript-eslint/experimental-utils/dist/eslint-utils/RuleTester.js +127 -0
  570. package/node_modules/@typescript-eslint/experimental-utils/dist/eslint-utils/RuleTester.js.map +1 -0
  571. package/node_modules/@typescript-eslint/experimental-utils/dist/eslint-utils/applyDefault.d.ts +10 -0
  572. package/node_modules/@typescript-eslint/experimental-utils/dist/eslint-utils/applyDefault.d.ts.map +1 -0
  573. package/node_modules/@typescript-eslint/experimental-utils/dist/eslint-utils/applyDefault.js +32 -0
  574. package/node_modules/@typescript-eslint/experimental-utils/dist/eslint-utils/applyDefault.js.map +1 -0
  575. package/node_modules/@typescript-eslint/experimental-utils/dist/eslint-utils/batchedSingleLineTests.d.ts +24 -0
  576. package/node_modules/@typescript-eslint/experimental-utils/dist/eslint-utils/batchedSingleLineTests.d.ts.map +1 -0
  577. package/node_modules/@typescript-eslint/experimental-utils/dist/eslint-utils/batchedSingleLineTests.js +26 -0
  578. package/node_modules/@typescript-eslint/experimental-utils/dist/eslint-utils/batchedSingleLineTests.js.map +1 -0
  579. package/node_modules/@typescript-eslint/experimental-utils/dist/eslint-utils/deepMerge.d.ts +17 -0
  580. package/node_modules/@typescript-eslint/experimental-utils/dist/eslint-utils/deepMerge.d.ts.map +1 -0
  581. package/node_modules/@typescript-eslint/experimental-utils/dist/eslint-utils/deepMerge.js +48 -0
  582. package/node_modules/@typescript-eslint/experimental-utils/dist/eslint-utils/deepMerge.js.map +1 -0
  583. package/node_modules/@typescript-eslint/experimental-utils/dist/eslint-utils/getParserServices.d.ts +8 -0
  584. package/node_modules/@typescript-eslint/experimental-utils/dist/eslint-utils/getParserServices.d.ts.map +1 -0
  585. package/node_modules/@typescript-eslint/experimental-utils/dist/eslint-utils/getParserServices.js +28 -0
  586. package/node_modules/@typescript-eslint/experimental-utils/dist/eslint-utils/getParserServices.js.map +1 -0
  587. package/node_modules/@typescript-eslint/experimental-utils/dist/eslint-utils/index.d.ts +8 -0
  588. package/node_modules/@typescript-eslint/experimental-utils/dist/eslint-utils/index.d.ts.map +1 -0
  589. package/node_modules/@typescript-eslint/experimental-utils/dist/eslint-utils/index.js +20 -0
  590. package/node_modules/@typescript-eslint/experimental-utils/dist/eslint-utils/index.js.map +1 -0
  591. package/node_modules/@typescript-eslint/experimental-utils/dist/index.d.ts +8 -0
  592. package/node_modules/@typescript-eslint/experimental-utils/dist/index.d.ts.map +1 -0
  593. package/node_modules/@typescript-eslint/experimental-utils/dist/index.js +37 -0
  594. package/node_modules/@typescript-eslint/experimental-utils/dist/index.js.map +1 -0
  595. package/node_modules/@typescript-eslint/experimental-utils/dist/json-schema.d.ts +2 -0
  596. package/node_modules/@typescript-eslint/experimental-utils/dist/json-schema.d.ts.map +1 -0
  597. package/node_modules/@typescript-eslint/experimental-utils/dist/json-schema.js +6 -0
  598. package/node_modules/@typescript-eslint/experimental-utils/dist/json-schema.js.map +1 -0
  599. package/node_modules/@typescript-eslint/experimental-utils/dist/ts-eslint/AST.d.ts +9 -0
  600. package/node_modules/@typescript-eslint/experimental-utils/dist/ts-eslint/AST.d.ts.map +1 -0
  601. package/node_modules/@typescript-eslint/experimental-utils/dist/ts-eslint/AST.js +4 -0
  602. package/node_modules/@typescript-eslint/experimental-utils/dist/ts-eslint/AST.js.map +1 -0
  603. package/node_modules/@typescript-eslint/experimental-utils/dist/ts-eslint/CLIEngine.d.ts +137 -0
  604. package/node_modules/@typescript-eslint/experimental-utils/dist/ts-eslint/CLIEngine.d.ts.map +1 -0
  605. package/node_modules/@typescript-eslint/experimental-utils/dist/ts-eslint/CLIEngine.js +17 -0
  606. package/node_modules/@typescript-eslint/experimental-utils/dist/ts-eslint/CLIEngine.js.map +1 -0
  607. package/node_modules/@typescript-eslint/experimental-utils/dist/ts-eslint/ESLint.d.ts +338 -0
  608. package/node_modules/@typescript-eslint/experimental-utils/dist/ts-eslint/ESLint.d.ts.map +1 -0
  609. package/node_modules/@typescript-eslint/experimental-utils/dist/ts-eslint/ESLint.js +23 -0
  610. package/node_modules/@typescript-eslint/experimental-utils/dist/ts-eslint/ESLint.js.map +1 -0
  611. package/node_modules/@typescript-eslint/experimental-utils/dist/ts-eslint/Linter.d.ts +323 -0
  612. package/node_modules/@typescript-eslint/experimental-utils/dist/ts-eslint/Linter.d.ts.map +1 -0
  613. package/node_modules/@typescript-eslint/experimental-utils/dist/ts-eslint/Linter.js +14 -0
  614. package/node_modules/@typescript-eslint/experimental-utils/dist/ts-eslint/Linter.js.map +1 -0
  615. package/node_modules/@typescript-eslint/experimental-utils/dist/ts-eslint/ParserOptions.d.ts +2 -0
  616. package/node_modules/@typescript-eslint/experimental-utils/dist/ts-eslint/ParserOptions.d.ts.map +1 -0
  617. package/node_modules/@typescript-eslint/experimental-utils/dist/ts-eslint/ParserOptions.js +3 -0
  618. package/node_modules/@typescript-eslint/experimental-utils/dist/ts-eslint/ParserOptions.js.map +1 -0
  619. package/node_modules/@typescript-eslint/experimental-utils/dist/ts-eslint/Rule.d.ts +389 -0
  620. package/node_modules/@typescript-eslint/experimental-utils/dist/ts-eslint/Rule.d.ts.map +1 -0
  621. package/node_modules/@typescript-eslint/experimental-utils/dist/ts-eslint/Rule.js +3 -0
  622. package/node_modules/@typescript-eslint/experimental-utils/dist/ts-eslint/Rule.js.map +1 -0
  623. package/node_modules/@typescript-eslint/experimental-utils/dist/ts-eslint/RuleTester.d.ts +148 -0
  624. package/node_modules/@typescript-eslint/experimental-utils/dist/ts-eslint/RuleTester.d.ts.map +1 -0
  625. package/node_modules/@typescript-eslint/experimental-utils/dist/ts-eslint/RuleTester.js +8 -0
  626. package/node_modules/@typescript-eslint/experimental-utils/dist/ts-eslint/RuleTester.js.map +1 -0
  627. package/node_modules/@typescript-eslint/experimental-utils/dist/ts-eslint/Scope.d.ts +44 -0
  628. package/node_modules/@typescript-eslint/experimental-utils/dist/ts-eslint/Scope.d.ts.map +1 -0
  629. package/node_modules/@typescript-eslint/experimental-utils/dist/ts-eslint/Scope.js +31 -0
  630. package/node_modules/@typescript-eslint/experimental-utils/dist/ts-eslint/Scope.js.map +1 -0
  631. package/node_modules/@typescript-eslint/experimental-utils/dist/ts-eslint/SourceCode.d.ts +343 -0
  632. package/node_modules/@typescript-eslint/experimental-utils/dist/ts-eslint/SourceCode.d.ts.map +1 -0
  633. package/node_modules/@typescript-eslint/experimental-utils/dist/ts-eslint/SourceCode.js +9 -0
  634. package/node_modules/@typescript-eslint/experimental-utils/dist/ts-eslint/SourceCode.js.map +1 -0
  635. package/node_modules/@typescript-eslint/experimental-utils/dist/ts-eslint/index.d.ts +10 -0
  636. package/node_modules/@typescript-eslint/experimental-utils/dist/ts-eslint/index.d.ts.map +1 -0
  637. package/node_modules/@typescript-eslint/experimental-utils/dist/ts-eslint/index.js +22 -0
  638. package/node_modules/@typescript-eslint/experimental-utils/dist/ts-eslint/index.js.map +1 -0
  639. package/node_modules/@typescript-eslint/experimental-utils/dist/ts-eslint-scope/Definition.d.ts +19 -0
  640. package/node_modules/@typescript-eslint/experimental-utils/dist/ts-eslint-scope/Definition.d.ts.map +1 -0
  641. package/node_modules/@typescript-eslint/experimental-utils/dist/ts-eslint-scope/Definition.js +9 -0
  642. package/node_modules/@typescript-eslint/experimental-utils/dist/ts-eslint-scope/Definition.js.map +1 -0
  643. package/node_modules/@typescript-eslint/experimental-utils/dist/ts-eslint-scope/Options.d.ts +15 -0
  644. package/node_modules/@typescript-eslint/experimental-utils/dist/ts-eslint-scope/Options.d.ts.map +1 -0
  645. package/node_modules/@typescript-eslint/experimental-utils/dist/ts-eslint-scope/Options.js +3 -0
  646. package/node_modules/@typescript-eslint/experimental-utils/dist/ts-eslint-scope/Options.js.map +1 -0
  647. package/node_modules/@typescript-eslint/experimental-utils/dist/ts-eslint-scope/PatternVisitor.d.ts +25 -0
  648. package/node_modules/@typescript-eslint/experimental-utils/dist/ts-eslint-scope/PatternVisitor.d.ts.map +1 -0
  649. package/node_modules/@typescript-eslint/experimental-utils/dist/ts-eslint-scope/PatternVisitor.js +10 -0
  650. package/node_modules/@typescript-eslint/experimental-utils/dist/ts-eslint-scope/PatternVisitor.js.map +1 -0
  651. package/node_modules/@typescript-eslint/experimental-utils/dist/ts-eslint-scope/Reference.d.ts +28 -0
  652. package/node_modules/@typescript-eslint/experimental-utils/dist/ts-eslint-scope/Reference.d.ts.map +1 -0
  653. package/node_modules/@typescript-eslint/experimental-utils/dist/ts-eslint-scope/Reference.js +10 -0
  654. package/node_modules/@typescript-eslint/experimental-utils/dist/ts-eslint-scope/Reference.js.map +1 -0
  655. package/node_modules/@typescript-eslint/experimental-utils/dist/ts-eslint-scope/Referencer.d.ts +55 -0
  656. package/node_modules/@typescript-eslint/experimental-utils/dist/ts-eslint-scope/Referencer.d.ts.map +1 -0
  657. package/node_modules/@typescript-eslint/experimental-utils/dist/ts-eslint-scope/Referencer.js +11 -0
  658. package/node_modules/@typescript-eslint/experimental-utils/dist/ts-eslint-scope/Referencer.js.map +1 -0
  659. package/node_modules/@typescript-eslint/experimental-utils/dist/ts-eslint-scope/Scope.d.ts +103 -0
  660. package/node_modules/@typescript-eslint/experimental-utils/dist/ts-eslint-scope/Scope.d.ts.map +1 -0
  661. package/node_modules/@typescript-eslint/experimental-utils/dist/ts-eslint-scope/Scope.js +28 -0
  662. package/node_modules/@typescript-eslint/experimental-utils/dist/ts-eslint-scope/Scope.js.map +1 -0
  663. package/node_modules/@typescript-eslint/experimental-utils/dist/ts-eslint-scope/ScopeManager.d.ts +50 -0
  664. package/node_modules/@typescript-eslint/experimental-utils/dist/ts-eslint-scope/ScopeManager.d.ts.map +1 -0
  665. package/node_modules/@typescript-eslint/experimental-utils/dist/ts-eslint-scope/ScopeManager.js +10 -0
  666. package/node_modules/@typescript-eslint/experimental-utils/dist/ts-eslint-scope/ScopeManager.js.map +1 -0
  667. package/node_modules/@typescript-eslint/experimental-utils/dist/ts-eslint-scope/Variable.d.ts +17 -0
  668. package/node_modules/@typescript-eslint/experimental-utils/dist/ts-eslint-scope/Variable.d.ts.map +1 -0
  669. package/node_modules/@typescript-eslint/experimental-utils/dist/ts-eslint-scope/Variable.js +10 -0
  670. package/node_modules/@typescript-eslint/experimental-utils/dist/ts-eslint-scope/Variable.js.map +1 -0
  671. package/node_modules/@typescript-eslint/experimental-utils/dist/ts-eslint-scope/analyze.d.ts +16 -0
  672. package/node_modules/@typescript-eslint/experimental-utils/dist/ts-eslint-scope/analyze.d.ts.map +1 -0
  673. package/node_modules/@typescript-eslint/experimental-utils/dist/ts-eslint-scope/analyze.js +7 -0
  674. package/node_modules/@typescript-eslint/experimental-utils/dist/ts-eslint-scope/analyze.js.map +1 -0
  675. package/node_modules/@typescript-eslint/experimental-utils/dist/ts-eslint-scope/index.d.ts +11 -0
  676. package/node_modules/@typescript-eslint/experimental-utils/dist/ts-eslint-scope/index.d.ts.map +1 -0
  677. package/node_modules/@typescript-eslint/experimental-utils/dist/ts-eslint-scope/index.js +25 -0
  678. package/node_modules/@typescript-eslint/experimental-utils/dist/ts-eslint-scope/index.js.map +1 -0
  679. package/node_modules/@typescript-eslint/experimental-utils/dist/ts-estree.d.ts +3 -0
  680. package/node_modules/@typescript-eslint/experimental-utils/dist/ts-estree.d.ts.map +1 -0
  681. package/node_modules/@typescript-eslint/experimental-utils/dist/ts-estree.js +10 -0
  682. package/node_modules/@typescript-eslint/experimental-utils/dist/ts-estree.js.map +1 -0
  683. package/node_modules/@typescript-eslint/experimental-utils/package.json +67 -0
  684. package/node_modules/@typescript-eslint/parser/CHANGELOG.md +1283 -0
  685. package/node_modules/@typescript-eslint/parser/LICENSE +22 -0
  686. package/node_modules/@typescript-eslint/parser/README.md +290 -0
  687. package/node_modules/@typescript-eslint/parser/dist/index.d.ts +4 -0
  688. package/node_modules/@typescript-eslint/parser/dist/index.d.ts.map +1 -0
  689. package/node_modules/@typescript-eslint/parser/dist/index.js +13 -0
  690. package/node_modules/@typescript-eslint/parser/dist/index.js.map +1 -0
  691. package/node_modules/@typescript-eslint/parser/dist/parser.d.ts +17 -0
  692. package/node_modules/@typescript-eslint/parser/dist/parser.d.ts.map +1 -0
  693. package/node_modules/@typescript-eslint/parser/dist/parser.js +133 -0
  694. package/node_modules/@typescript-eslint/parser/dist/parser.js.map +1 -0
  695. package/node_modules/@typescript-eslint/parser/package.json +75 -0
  696. package/node_modules/@typescript-eslint/scope-manager/CHANGELOG.md +673 -0
  697. package/node_modules/@typescript-eslint/scope-manager/LICENSE +21 -0
  698. package/node_modules/@typescript-eslint/scope-manager/README.md +120 -0
  699. package/node_modules/@typescript-eslint/scope-manager/dist/ID.d.ts +4 -0
  700. package/node_modules/@typescript-eslint/scope-manager/dist/ID.d.ts.map +1 -0
  701. package/node_modules/@typescript-eslint/scope-manager/dist/ID.js +22 -0
  702. package/node_modules/@typescript-eslint/scope-manager/dist/ID.js.map +1 -0
  703. package/node_modules/@typescript-eslint/scope-manager/dist/ScopeManager.d.ts +70 -0
  704. package/node_modules/@typescript-eslint/scope-manager/dist/ScopeManager.d.ts.map +1 -0
  705. package/node_modules/@typescript-eslint/scope-manager/dist/ScopeManager.js +184 -0
  706. package/node_modules/@typescript-eslint/scope-manager/dist/ScopeManager.js.map +1 -0
  707. package/node_modules/@typescript-eslint/scope-manager/dist/analyze.d.ts +62 -0
  708. package/node_modules/@typescript-eslint/scope-manager/dist/analyze.d.ts.map +1 -0
  709. package/node_modules/@typescript-eslint/scope-manager/dist/analyze.js +58 -0
  710. package/node_modules/@typescript-eslint/scope-manager/dist/analyze.js.map +1 -0
  711. package/node_modules/@typescript-eslint/scope-manager/dist/assert.d.ts +3 -0
  712. package/node_modules/@typescript-eslint/scope-manager/dist/assert.d.ts.map +1 -0
  713. package/node_modules/@typescript-eslint/scope-manager/dist/assert.js +11 -0
  714. package/node_modules/@typescript-eslint/scope-manager/dist/assert.js.map +1 -0
  715. package/node_modules/@typescript-eslint/scope-manager/dist/definition/CatchClauseDefinition.d.ts +10 -0
  716. package/node_modules/@typescript-eslint/scope-manager/dist/definition/CatchClauseDefinition.d.ts.map +1 -0
  717. package/node_modules/@typescript-eslint/scope-manager/dist/definition/CatchClauseDefinition.js +14 -0
  718. package/node_modules/@typescript-eslint/scope-manager/dist/definition/CatchClauseDefinition.js.map +1 -0
  719. package/node_modules/@typescript-eslint/scope-manager/dist/definition/ClassNameDefinition.d.ts +10 -0
  720. package/node_modules/@typescript-eslint/scope-manager/dist/definition/ClassNameDefinition.d.ts.map +1 -0
  721. package/node_modules/@typescript-eslint/scope-manager/dist/definition/ClassNameDefinition.js +14 -0
  722. package/node_modules/@typescript-eslint/scope-manager/dist/definition/ClassNameDefinition.js.map +1 -0
  723. package/node_modules/@typescript-eslint/scope-manager/dist/definition/Definition.d.ts +14 -0
  724. package/node_modules/@typescript-eslint/scope-manager/dist/definition/Definition.d.ts.map +1 -0
  725. package/node_modules/@typescript-eslint/scope-manager/dist/definition/Definition.js +3 -0
  726. package/node_modules/@typescript-eslint/scope-manager/dist/definition/Definition.js.map +1 -0
  727. package/node_modules/@typescript-eslint/scope-manager/dist/definition/DefinitionBase.d.ts +39 -0
  728. package/node_modules/@typescript-eslint/scope-manager/dist/definition/DefinitionBase.d.ts.map +1 -0
  729. package/node_modules/@typescript-eslint/scope-manager/dist/definition/DefinitionBase.js +19 -0
  730. package/node_modules/@typescript-eslint/scope-manager/dist/definition/DefinitionBase.js.map +1 -0
  731. package/node_modules/@typescript-eslint/scope-manager/dist/definition/DefinitionType.d.ts +15 -0
  732. package/node_modules/@typescript-eslint/scope-manager/dist/definition/DefinitionType.d.ts.map +1 -0
  733. package/node_modules/@typescript-eslint/scope-manager/dist/definition/DefinitionType.js +19 -0
  734. package/node_modules/@typescript-eslint/scope-manager/dist/definition/DefinitionType.js.map +1 -0
  735. package/node_modules/@typescript-eslint/scope-manager/dist/definition/FunctionNameDefinition.d.ts +10 -0
  736. package/node_modules/@typescript-eslint/scope-manager/dist/definition/FunctionNameDefinition.d.ts.map +1 -0
  737. package/node_modules/@typescript-eslint/scope-manager/dist/definition/FunctionNameDefinition.js +14 -0
  738. package/node_modules/@typescript-eslint/scope-manager/dist/definition/FunctionNameDefinition.js.map +1 -0
  739. package/node_modules/@typescript-eslint/scope-manager/dist/definition/ImplicitGlobalVariableDefinition.d.ts +10 -0
  740. package/node_modules/@typescript-eslint/scope-manager/dist/definition/ImplicitGlobalVariableDefinition.d.ts.map +1 -0
  741. package/node_modules/@typescript-eslint/scope-manager/dist/definition/ImplicitGlobalVariableDefinition.js +14 -0
  742. package/node_modules/@typescript-eslint/scope-manager/dist/definition/ImplicitGlobalVariableDefinition.js.map +1 -0
  743. package/node_modules/@typescript-eslint/scope-manager/dist/definition/ImportBindingDefinition.d.ts +11 -0
  744. package/node_modules/@typescript-eslint/scope-manager/dist/definition/ImportBindingDefinition.d.ts.map +1 -0
  745. package/node_modules/@typescript-eslint/scope-manager/dist/definition/ImportBindingDefinition.js +14 -0
  746. package/node_modules/@typescript-eslint/scope-manager/dist/definition/ImportBindingDefinition.js.map +1 -0
  747. package/node_modules/@typescript-eslint/scope-manager/dist/definition/ParameterDefinition.d.ts +14 -0
  748. package/node_modules/@typescript-eslint/scope-manager/dist/definition/ParameterDefinition.d.ts.map +1 -0
  749. package/node_modules/@typescript-eslint/scope-manager/dist/definition/ParameterDefinition.js +15 -0
  750. package/node_modules/@typescript-eslint/scope-manager/dist/definition/ParameterDefinition.js.map +1 -0
  751. package/node_modules/@typescript-eslint/scope-manager/dist/definition/TSEnumMemberDefinition.d.ts +10 -0
  752. package/node_modules/@typescript-eslint/scope-manager/dist/definition/TSEnumMemberDefinition.d.ts.map +1 -0
  753. package/node_modules/@typescript-eslint/scope-manager/dist/definition/TSEnumMemberDefinition.js +14 -0
  754. package/node_modules/@typescript-eslint/scope-manager/dist/definition/TSEnumMemberDefinition.js.map +1 -0
  755. package/node_modules/@typescript-eslint/scope-manager/dist/definition/TSEnumNameDefinition.d.ts +10 -0
  756. package/node_modules/@typescript-eslint/scope-manager/dist/definition/TSEnumNameDefinition.d.ts.map +1 -0
  757. package/node_modules/@typescript-eslint/scope-manager/dist/definition/TSEnumNameDefinition.js +14 -0
  758. package/node_modules/@typescript-eslint/scope-manager/dist/definition/TSEnumNameDefinition.js.map +1 -0
  759. package/node_modules/@typescript-eslint/scope-manager/dist/definition/TSModuleNameDefinition.d.ts +10 -0
  760. package/node_modules/@typescript-eslint/scope-manager/dist/definition/TSModuleNameDefinition.d.ts.map +1 -0
  761. package/node_modules/@typescript-eslint/scope-manager/dist/definition/TSModuleNameDefinition.js +14 -0
  762. package/node_modules/@typescript-eslint/scope-manager/dist/definition/TSModuleNameDefinition.js.map +1 -0
  763. package/node_modules/@typescript-eslint/scope-manager/dist/definition/TypeDefinition.d.ts +10 -0
  764. package/node_modules/@typescript-eslint/scope-manager/dist/definition/TypeDefinition.d.ts.map +1 -0
  765. package/node_modules/@typescript-eslint/scope-manager/dist/definition/TypeDefinition.js +14 -0
  766. package/node_modules/@typescript-eslint/scope-manager/dist/definition/TypeDefinition.js.map +1 -0
  767. package/node_modules/@typescript-eslint/scope-manager/dist/definition/VariableDefinition.d.ts +10 -0
  768. package/node_modules/@typescript-eslint/scope-manager/dist/definition/VariableDefinition.d.ts.map +1 -0
  769. package/node_modules/@typescript-eslint/scope-manager/dist/definition/VariableDefinition.js +14 -0
  770. package/node_modules/@typescript-eslint/scope-manager/dist/definition/VariableDefinition.js.map +1 -0
  771. package/node_modules/@typescript-eslint/scope-manager/dist/definition/index.d.ts +14 -0
  772. package/node_modules/@typescript-eslint/scope-manager/dist/definition/index.d.ts.map +1 -0
  773. package/node_modules/@typescript-eslint/scope-manager/dist/definition/index.js +26 -0
  774. package/node_modules/@typescript-eslint/scope-manager/dist/definition/index.js.map +1 -0
  775. package/node_modules/@typescript-eslint/scope-manager/dist/index.d.ts +9 -0
  776. package/node_modules/@typescript-eslint/scope-manager/dist/index.d.ts.map +1 -0
  777. package/node_modules/@typescript-eslint/scope-manager/dist/index.js +27 -0
  778. package/node_modules/@typescript-eslint/scope-manager/dist/index.js.map +1 -0
  779. package/node_modules/@typescript-eslint/scope-manager/dist/lib/base-config.d.ts +16 -0
  780. package/node_modules/@typescript-eslint/scope-manager/dist/lib/base-config.d.ts.map +1 -0
  781. package/node_modules/@typescript-eslint/scope-manager/dist/lib/base-config.js +22 -0
  782. package/node_modules/@typescript-eslint/scope-manager/dist/lib/base-config.js.map +1 -0
  783. package/node_modules/@typescript-eslint/scope-manager/dist/lib/dom.d.ts +3 -0
  784. package/node_modules/@typescript-eslint/scope-manager/dist/lib/dom.d.ts.map +1 -0
  785. package/node_modules/@typescript-eslint/scope-manager/dist/lib/dom.iterable.d.ts +3 -0
  786. package/node_modules/@typescript-eslint/scope-manager/dist/lib/dom.iterable.d.ts.map +1 -0
  787. package/node_modules/@typescript-eslint/scope-manager/dist/lib/dom.iterable.js +62 -0
  788. package/node_modules/@typescript-eslint/scope-manager/dist/lib/dom.iterable.js.map +1 -0
  789. package/node_modules/@typescript-eslint/scope-manager/dist/lib/dom.js +1312 -0
  790. package/node_modules/@typescript-eslint/scope-manager/dist/lib/dom.js.map +1 -0
  791. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.collection.d.ts +3 -0
  792. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.collection.d.ts.map +1 -0
  793. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.collection.js +20 -0
  794. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.collection.js.map +1 -0
  795. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.core.d.ts +3 -0
  796. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.core.d.ts.map +1 -0
  797. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.core.js +22 -0
  798. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.core.js.map +1 -0
  799. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.d.ts +3 -0
  800. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.d.ts.map +1 -0
  801. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.generator.d.ts +3 -0
  802. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.generator.d.ts.map +1 -0
  803. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.generator.js +10 -0
  804. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.generator.js.map +1 -0
  805. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.iterable.d.ts +3 -0
  806. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.iterable.d.ts.map +1 -0
  807. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.iterable.js +10 -0
  808. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.iterable.js.map +1 -0
  809. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.js +18 -0
  810. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.js.map +1 -0
  811. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.promise.d.ts +3 -0
  812. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.promise.d.ts.map +1 -0
  813. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.promise.js +11 -0
  814. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.promise.js.map +1 -0
  815. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.proxy.d.ts +3 -0
  816. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.proxy.d.ts.map +1 -0
  817. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.proxy.js +12 -0
  818. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.proxy.js.map +1 -0
  819. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.reflect.d.ts +3 -0
  820. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.reflect.d.ts.map +1 -0
  821. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.reflect.js +11 -0
  822. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.reflect.js.map +1 -0
  823. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.symbol.d.ts +3 -0
  824. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.symbol.d.ts.map +1 -0
  825. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.symbol.js +11 -0
  826. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.symbol.js.map +1 -0
  827. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.symbol.wellknown.d.ts +3 -0
  828. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.symbol.wellknown.d.ts.map +1 -0
  829. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.symbol.wellknown.js +10 -0
  830. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.symbol.wellknown.js.map +1 -0
  831. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.array.include.d.ts +3 -0
  832. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.array.include.d.ts.map +1 -0
  833. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.array.include.js +21 -0
  834. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.array.include.js.map +1 -0
  835. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.d.ts +3 -0
  836. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.d.ts.map +1 -0
  837. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.full.d.ts +3 -0
  838. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.full.d.ts.map +1 -0
  839. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.full.js +13 -0
  840. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.full.js.map +1 -0
  841. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.js +10 -0
  842. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.js.map +1 -0
  843. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.d.ts +3 -0
  844. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.d.ts.map +1 -0
  845. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.full.d.ts +3 -0
  846. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.full.d.ts.map +1 -0
  847. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.full.js +13 -0
  848. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.full.js.map +1 -0
  849. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.intl.d.ts +3 -0
  850. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.intl.d.ts.map +1 -0
  851. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.intl.js +11 -0
  852. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.intl.js.map +1 -0
  853. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.js +14 -0
  854. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.js.map +1 -0
  855. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.object.d.ts +3 -0
  856. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.object.d.ts.map +1 -0
  857. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.object.js +11 -0
  858. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.object.js.map +1 -0
  859. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.sharedmemory.d.ts +3 -0
  860. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.sharedmemory.d.ts.map +1 -0
  861. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.sharedmemory.js +11 -0
  862. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.sharedmemory.js.map +1 -0
  863. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.string.d.ts +3 -0
  864. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.string.d.ts.map +1 -0
  865. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.string.js +11 -0
  866. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.string.js.map +1 -0
  867. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.typedarrays.d.ts +3 -0
  868. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.typedarrays.d.ts.map +1 -0
  869. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.typedarrays.js +19 -0
  870. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.typedarrays.js.map +1 -0
  871. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.asyncgenerator.d.ts +3 -0
  872. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.asyncgenerator.d.ts.map +1 -0
  873. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.asyncgenerator.js +10 -0
  874. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.asyncgenerator.js.map +1 -0
  875. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.asynciterable.d.ts +3 -0
  876. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.asynciterable.d.ts.map +1 -0
  877. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.asynciterable.js +11 -0
  878. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.asynciterable.js.map +1 -0
  879. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.d.ts +3 -0
  880. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.d.ts.map +1 -0
  881. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.full.d.ts +3 -0
  882. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.full.d.ts.map +1 -0
  883. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.full.js +13 -0
  884. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.full.js.map +1 -0
  885. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.intl.d.ts +3 -0
  886. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.intl.d.ts.map +1 -0
  887. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.intl.js +11 -0
  888. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.intl.js.map +1 -0
  889. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.js +14 -0
  890. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.js.map +1 -0
  891. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.promise.d.ts +3 -0
  892. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.promise.d.ts.map +1 -0
  893. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.promise.js +11 -0
  894. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.promise.js.map +1 -0
  895. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.regexp.d.ts +3 -0
  896. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.regexp.d.ts.map +1 -0
  897. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.regexp.js +13 -0
  898. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.regexp.js.map +1 -0
  899. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.array.d.ts +3 -0
  900. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.array.d.ts.map +1 -0
  901. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.array.js +13 -0
  902. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.array.js.map +1 -0
  903. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.d.ts +3 -0
  904. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.d.ts.map +1 -0
  905. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.full.d.ts +3 -0
  906. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.full.d.ts.map +1 -0
  907. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.full.js +13 -0
  908. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.full.js.map +1 -0
  909. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.js +13 -0
  910. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.js.map +1 -0
  911. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.object.d.ts +3 -0
  912. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.object.d.ts.map +1 -0
  913. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.object.js +10 -0
  914. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.object.js.map +1 -0
  915. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.string.d.ts +3 -0
  916. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.string.d.ts.map +1 -0
  917. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.string.js +11 -0
  918. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.string.js.map +1 -0
  919. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.symbol.d.ts +3 -0
  920. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.symbol.d.ts.map +1 -0
  921. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.symbol.js +11 -0
  922. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.symbol.js.map +1 -0
  923. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.bigint.d.ts +3 -0
  924. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.bigint.d.ts.map +1 -0
  925. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.bigint.js +19 -0
  926. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.bigint.js.map +1 -0
  927. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.d.ts +3 -0
  928. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.d.ts.map +1 -0
  929. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.full.d.ts +3 -0
  930. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.full.d.ts.map +1 -0
  931. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.full.js +13 -0
  932. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.full.js.map +1 -0
  933. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.intl.d.ts +3 -0
  934. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.intl.d.ts.map +1 -0
  935. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.intl.js +11 -0
  936. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.intl.js.map +1 -0
  937. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.js +15 -0
  938. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.js.map +1 -0
  939. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.promise.d.ts +3 -0
  940. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.promise.d.ts.map +1 -0
  941. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.promise.js +14 -0
  942. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.promise.js.map +1 -0
  943. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.sharedmemory.d.ts +3 -0
  944. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.sharedmemory.d.ts.map +1 -0
  945. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.sharedmemory.js +11 -0
  946. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.sharedmemory.js.map +1 -0
  947. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.string.d.ts +3 -0
  948. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.string.d.ts.map +1 -0
  949. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.string.js +10 -0
  950. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.string.js.map +1 -0
  951. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.symbol.wellknown.d.ts +3 -0
  952. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.symbol.wellknown.d.ts.map +1 -0
  953. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.symbol.wellknown.js +11 -0
  954. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.symbol.wellknown.js.map +1 -0
  955. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.d.ts +3 -0
  956. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.d.ts.map +1 -0
  957. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.full.d.ts +3 -0
  958. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.full.d.ts.map +1 -0
  959. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.full.js +13 -0
  960. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.full.js.map +1 -0
  961. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.js +12 -0
  962. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.js.map +1 -0
  963. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.promise.d.ts +3 -0
  964. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.promise.d.ts.map +1 -0
  965. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.promise.js +13 -0
  966. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.promise.js.map +1 -0
  967. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.string.d.ts +3 -0
  968. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.string.d.ts.map +1 -0
  969. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.string.js +11 -0
  970. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.string.js.map +1 -0
  971. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.weakref.d.ts +3 -0
  972. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.weakref.d.ts.map +1 -0
  973. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.weakref.js +14 -0
  974. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.weakref.js.map +1 -0
  975. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es5.d.ts +3 -0
  976. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es5.d.ts.map +1 -0
  977. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es5.js +110 -0
  978. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es5.js.map +1 -0
  979. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es6.d.ts +3 -0
  980. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es6.d.ts.map +1 -0
  981. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es6.js +18 -0
  982. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es6.js.map +1 -0
  983. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es7.d.ts +3 -0
  984. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es7.d.ts.map +1 -0
  985. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es7.js +10 -0
  986. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es7.js.map +1 -0
  987. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.array.d.ts +3 -0
  988. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.array.d.ts.map +1 -0
  989. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.array.js +13 -0
  990. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.array.js.map +1 -0
  991. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.asynciterable.d.ts +3 -0
  992. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.asynciterable.d.ts.map +1 -0
  993. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.asynciterable.js +11 -0
  994. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.asynciterable.js.map +1 -0
  995. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.bigint.d.ts +3 -0
  996. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.bigint.d.ts.map +1 -0
  997. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.bigint.js +19 -0
  998. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.bigint.js.map +1 -0
  999. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.d.ts +3 -0
  1000. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.d.ts.map +1 -0
  1001. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.full.d.ts +3 -0
  1002. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.full.d.ts.map +1 -0
  1003. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.full.js +13 -0
  1004. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.full.js.map +1 -0
  1005. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.intl.d.ts +3 -0
  1006. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.intl.d.ts.map +1 -0
  1007. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.intl.js +11 -0
  1008. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.intl.js.map +1 -0
  1009. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.js +10 -0
  1010. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.js.map +1 -0
  1011. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.promise.d.ts +3 -0
  1012. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.promise.d.ts.map +1 -0
  1013. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.promise.js +13 -0
  1014. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.promise.js.map +1 -0
  1015. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.string.d.ts +3 -0
  1016. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.string.d.ts.map +1 -0
  1017. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.string.js +11 -0
  1018. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.string.js.map +1 -0
  1019. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.symbol.d.ts +3 -0
  1020. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.symbol.d.ts.map +1 -0
  1021. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.symbol.js +11 -0
  1022. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.symbol.js.map +1 -0
  1023. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.weakref.d.ts +3 -0
  1024. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.weakref.d.ts.map +1 -0
  1025. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.weakref.js +14 -0
  1026. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.weakref.js.map +1 -0
  1027. package/node_modules/@typescript-eslint/scope-manager/dist/lib/index.d.ts +70 -0
  1028. package/node_modules/@typescript-eslint/scope-manager/dist/lib/index.d.ts.map +1 -0
  1029. package/node_modules/@typescript-eslint/scope-manager/dist/lib/index.js +142 -0
  1030. package/node_modules/@typescript-eslint/scope-manager/dist/lib/index.js.map +1 -0
  1031. package/node_modules/@typescript-eslint/scope-manager/dist/lib/lib.d.ts +3 -0
  1032. package/node_modules/@typescript-eslint/scope-manager/dist/lib/lib.d.ts.map +1 -0
  1033. package/node_modules/@typescript-eslint/scope-manager/dist/lib/lib.js +12 -0
  1034. package/node_modules/@typescript-eslint/scope-manager/dist/lib/lib.js.map +1 -0
  1035. package/node_modules/@typescript-eslint/scope-manager/dist/lib/scripthost.d.ts +3 -0
  1036. package/node_modules/@typescript-eslint/scope-manager/dist/lib/scripthost.d.ts.map +1 -0
  1037. package/node_modules/@typescript-eslint/scope-manager/dist/lib/scripthost.js +23 -0
  1038. package/node_modules/@typescript-eslint/scope-manager/dist/lib/scripthost.js.map +1 -0
  1039. package/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.d.ts +3 -0
  1040. package/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.d.ts.map +1 -0
  1041. package/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.importscripts.d.ts +3 -0
  1042. package/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.importscripts.d.ts.map +1 -0
  1043. package/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.importscripts.js +8 -0
  1044. package/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.importscripts.js.map +1 -0
  1045. package/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.iterable.d.ts +3 -0
  1046. package/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.iterable.d.ts.map +1 -0
  1047. package/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.iterable.js +24 -0
  1048. package/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.iterable.js.map +1 -0
  1049. package/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.js +420 -0
  1050. package/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.js.map +1 -0
  1051. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/ClassVisitor.d.ts +26 -0
  1052. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/ClassVisitor.d.ts.map +1 -0
  1053. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/ClassVisitor.js +314 -0
  1054. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/ClassVisitor.js.map +1 -0
  1055. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/ExportVisitor.d.ts +15 -0
  1056. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/ExportVisitor.d.ts.map +1 -0
  1057. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/ExportVisitor.js +73 -0
  1058. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/ExportVisitor.js.map +1 -0
  1059. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/ImportVisitor.d.ts +14 -0
  1060. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/ImportVisitor.d.ts.map +1 -0
  1061. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/ImportVisitor.js +50 -0
  1062. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/ImportVisitor.js.map +1 -0
  1063. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/PatternVisitor.d.ts +28 -0
  1064. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/PatternVisitor.d.ts.map +1 -0
  1065. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/PatternVisitor.js +111 -0
  1066. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/PatternVisitor.js.map +1 -0
  1067. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/Reference.d.ts +89 -0
  1068. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/Reference.d.ts.map +1 -0
  1069. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/Reference.js +109 -0
  1070. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/Reference.js.map +1 -0
  1071. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/Referencer.d.ts +82 -0
  1072. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/Referencer.d.ts.map +1 -0
  1073. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/Referencer.js +528 -0
  1074. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/Referencer.js.map +1 -0
  1075. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/TypeVisitor.d.ts +33 -0
  1076. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/TypeVisitor.d.ts.map +1 -0
  1077. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/TypeVisitor.js +222 -0
  1078. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/TypeVisitor.js.map +1 -0
  1079. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/Visitor.d.ts +13 -0
  1080. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/Visitor.d.ts.map +1 -0
  1081. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/Visitor.js +41 -0
  1082. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/Visitor.js.map +1 -0
  1083. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/VisitorBase.d.ts +22 -0
  1084. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/VisitorBase.d.ts.map +1 -0
  1085. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/VisitorBase.js +82 -0
  1086. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/VisitorBase.js.map +1 -0
  1087. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/index.d.ts +2 -0
  1088. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/index.d.ts.map +1 -0
  1089. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/index.js +6 -0
  1090. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/index.js.map +1 -0
  1091. package/node_modules/@typescript-eslint/scope-manager/dist/scope/BlockScope.d.ts +10 -0
  1092. package/node_modules/@typescript-eslint/scope-manager/dist/scope/BlockScope.d.ts.map +1 -0
  1093. package/node_modules/@typescript-eslint/scope-manager/dist/scope/BlockScope.js +12 -0
  1094. package/node_modules/@typescript-eslint/scope-manager/dist/scope/BlockScope.js.map +1 -0
  1095. package/node_modules/@typescript-eslint/scope-manager/dist/scope/CatchScope.d.ts +10 -0
  1096. package/node_modules/@typescript-eslint/scope-manager/dist/scope/CatchScope.d.ts.map +1 -0
  1097. package/node_modules/@typescript-eslint/scope-manager/dist/scope/CatchScope.js +12 -0
  1098. package/node_modules/@typescript-eslint/scope-manager/dist/scope/CatchScope.js.map +1 -0
  1099. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassFieldInitializerScope.d.ts +10 -0
  1100. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassFieldInitializerScope.d.ts.map +1 -0
  1101. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassFieldInitializerScope.js +12 -0
  1102. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassFieldInitializerScope.js.map +1 -0
  1103. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassScope.d.ts +10 -0
  1104. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassScope.d.ts.map +1 -0
  1105. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassScope.js +12 -0
  1106. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassScope.js.map +1 -0
  1107. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ConditionalTypeScope.d.ts +10 -0
  1108. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ConditionalTypeScope.d.ts.map +1 -0
  1109. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ConditionalTypeScope.js +12 -0
  1110. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ConditionalTypeScope.js.map +1 -0
  1111. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ForScope.d.ts +10 -0
  1112. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ForScope.d.ts.map +1 -0
  1113. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ForScope.js +12 -0
  1114. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ForScope.js.map +1 -0
  1115. package/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionExpressionNameScope.d.ts +11 -0
  1116. package/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionExpressionNameScope.d.ts.map +1 -0
  1117. package/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionExpressionNameScope.js +17 -0
  1118. package/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionExpressionNameScope.js.map +1 -0
  1119. package/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionScope.d.ts +13 -0
  1120. package/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionScope.d.ts.map +1 -0
  1121. package/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionScope.js +37 -0
  1122. package/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionScope.js.map +1 -0
  1123. package/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionTypeScope.d.ts +10 -0
  1124. package/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionTypeScope.d.ts.map +1 -0
  1125. package/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionTypeScope.js +12 -0
  1126. package/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionTypeScope.js.map +1 -0
  1127. package/node_modules/@typescript-eslint/scope-manager/dist/scope/GlobalScope.d.ts +18 -0
  1128. package/node_modules/@typescript-eslint/scope-manager/dist/scope/GlobalScope.d.ts.map +1 -0
  1129. package/node_modules/@typescript-eslint/scope-manager/dist/scope/GlobalScope.js +39 -0
  1130. package/node_modules/@typescript-eslint/scope-manager/dist/scope/GlobalScope.js.map +1 -0
  1131. package/node_modules/@typescript-eslint/scope-manager/dist/scope/MappedTypeScope.d.ts +10 -0
  1132. package/node_modules/@typescript-eslint/scope-manager/dist/scope/MappedTypeScope.d.ts.map +1 -0
  1133. package/node_modules/@typescript-eslint/scope-manager/dist/scope/MappedTypeScope.js +12 -0
  1134. package/node_modules/@typescript-eslint/scope-manager/dist/scope/MappedTypeScope.js.map +1 -0
  1135. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ModuleScope.d.ts +10 -0
  1136. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ModuleScope.d.ts.map +1 -0
  1137. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ModuleScope.js +12 -0
  1138. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ModuleScope.js.map +1 -0
  1139. package/node_modules/@typescript-eslint/scope-manager/dist/scope/Scope.d.ts +20 -0
  1140. package/node_modules/@typescript-eslint/scope-manager/dist/scope/Scope.d.ts.map +1 -0
  1141. package/node_modules/@typescript-eslint/scope-manager/dist/scope/Scope.js +3 -0
  1142. package/node_modules/@typescript-eslint/scope-manager/dist/scope/Scope.js.map +1 -0
  1143. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ScopeBase.d.ts +106 -0
  1144. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ScopeBase.d.ts.map +1 -0
  1145. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ScopeBase.js +366 -0
  1146. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ScopeBase.js.map +1 -0
  1147. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ScopeType.d.ts +21 -0
  1148. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ScopeType.d.ts.map +1 -0
  1149. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ScopeType.js +25 -0
  1150. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ScopeType.js.map +1 -0
  1151. package/node_modules/@typescript-eslint/scope-manager/dist/scope/SwitchScope.d.ts +10 -0
  1152. package/node_modules/@typescript-eslint/scope-manager/dist/scope/SwitchScope.d.ts.map +1 -0
  1153. package/node_modules/@typescript-eslint/scope-manager/dist/scope/SwitchScope.js +12 -0
  1154. package/node_modules/@typescript-eslint/scope-manager/dist/scope/SwitchScope.js.map +1 -0
  1155. package/node_modules/@typescript-eslint/scope-manager/dist/scope/TSEnumScope.d.ts +10 -0
  1156. package/node_modules/@typescript-eslint/scope-manager/dist/scope/TSEnumScope.d.ts.map +1 -0
  1157. package/node_modules/@typescript-eslint/scope-manager/dist/scope/TSEnumScope.js +12 -0
  1158. package/node_modules/@typescript-eslint/scope-manager/dist/scope/TSEnumScope.js.map +1 -0
  1159. package/node_modules/@typescript-eslint/scope-manager/dist/scope/TSModuleScope.d.ts +10 -0
  1160. package/node_modules/@typescript-eslint/scope-manager/dist/scope/TSModuleScope.d.ts.map +1 -0
  1161. package/node_modules/@typescript-eslint/scope-manager/dist/scope/TSModuleScope.js +12 -0
  1162. package/node_modules/@typescript-eslint/scope-manager/dist/scope/TSModuleScope.js.map +1 -0
  1163. package/node_modules/@typescript-eslint/scope-manager/dist/scope/TypeScope.d.ts +10 -0
  1164. package/node_modules/@typescript-eslint/scope-manager/dist/scope/TypeScope.d.ts.map +1 -0
  1165. package/node_modules/@typescript-eslint/scope-manager/dist/scope/TypeScope.js +12 -0
  1166. package/node_modules/@typescript-eslint/scope-manager/dist/scope/TypeScope.js.map +1 -0
  1167. package/node_modules/@typescript-eslint/scope-manager/dist/scope/WithScope.d.ts +11 -0
  1168. package/node_modules/@typescript-eslint/scope-manager/dist/scope/WithScope.d.ts.map +1 -0
  1169. package/node_modules/@typescript-eslint/scope-manager/dist/scope/WithScope.js +25 -0
  1170. package/node_modules/@typescript-eslint/scope-manager/dist/scope/WithScope.js.map +1 -0
  1171. package/node_modules/@typescript-eslint/scope-manager/dist/scope/index.d.ts +20 -0
  1172. package/node_modules/@typescript-eslint/scope-manager/dist/scope/index.d.ts.map +1 -0
  1173. package/node_modules/@typescript-eslint/scope-manager/dist/scope/index.js +32 -0
  1174. package/node_modules/@typescript-eslint/scope-manager/dist/scope/index.js.map +1 -0
  1175. package/node_modules/@typescript-eslint/scope-manager/dist/variable/ESLintScopeVariable.d.ts +34 -0
  1176. package/node_modules/@typescript-eslint/scope-manager/dist/variable/ESLintScopeVariable.d.ts.map +1 -0
  1177. package/node_modules/@typescript-eslint/scope-manager/dist/variable/ESLintScopeVariable.js +12 -0
  1178. package/node_modules/@typescript-eslint/scope-manager/dist/variable/ESLintScopeVariable.js.map +1 -0
  1179. package/node_modules/@typescript-eslint/scope-manager/dist/variable/ImplicitLibVariable.d.ts +25 -0
  1180. package/node_modules/@typescript-eslint/scope-manager/dist/variable/ImplicitLibVariable.d.ts.map +1 -0
  1181. package/node_modules/@typescript-eslint/scope-manager/dist/variable/ImplicitLibVariable.js +19 -0
  1182. package/node_modules/@typescript-eslint/scope-manager/dist/variable/ImplicitLibVariable.js.map +1 -0
  1183. package/node_modules/@typescript-eslint/scope-manager/dist/variable/Variable.d.ts +18 -0
  1184. package/node_modules/@typescript-eslint/scope-manager/dist/variable/Variable.d.ts.map +1 -0
  1185. package/node_modules/@typescript-eslint/scope-manager/dist/variable/Variable.js +33 -0
  1186. package/node_modules/@typescript-eslint/scope-manager/dist/variable/Variable.js.map +1 -0
  1187. package/node_modules/@typescript-eslint/scope-manager/dist/variable/VariableBase.d.ts +44 -0
  1188. package/node_modules/@typescript-eslint/scope-manager/dist/variable/VariableBase.d.ts.map +1 -0
  1189. package/node_modules/@typescript-eslint/scope-manager/dist/variable/VariableBase.js +39 -0
  1190. package/node_modules/@typescript-eslint/scope-manager/dist/variable/VariableBase.js.map +1 -0
  1191. package/node_modules/@typescript-eslint/scope-manager/dist/variable/index.d.ts +4 -0
  1192. package/node_modules/@typescript-eslint/scope-manager/dist/variable/index.d.ts.map +1 -0
  1193. package/node_modules/@typescript-eslint/scope-manager/dist/variable/index.js +10 -0
  1194. package/node_modules/@typescript-eslint/scope-manager/dist/variable/index.js.map +1 -0
  1195. package/node_modules/@typescript-eslint/scope-manager/package.json +68 -0
  1196. package/node_modules/@typescript-eslint/types/CHANGELOG.md +653 -0
  1197. package/node_modules/@typescript-eslint/types/LICENSE +21 -0
  1198. package/node_modules/@typescript-eslint/types/README.md +17 -0
  1199. package/node_modules/@typescript-eslint/types/dist/ast-spec.d.ts +1370 -0
  1200. package/node_modules/@typescript-eslint/types/dist/ast-spec.d.ts.map +1 -0
  1201. package/node_modules/@typescript-eslint/types/dist/ast-spec.js +197 -0
  1202. package/node_modules/@typescript-eslint/types/dist/ast-spec.js.map +1 -0
  1203. package/node_modules/@typescript-eslint/types/dist/index.d.ts +6 -0
  1204. package/node_modules/@typescript-eslint/types/dist/index.d.ts.map +1 -0
  1205. package/node_modules/@typescript-eslint/types/dist/index.js +21 -0
  1206. package/node_modules/@typescript-eslint/types/dist/index.js.map +1 -0
  1207. package/node_modules/@typescript-eslint/types/dist/lib.d.ts +3 -0
  1208. package/node_modules/@typescript-eslint/types/dist/lib.d.ts.map +1 -0
  1209. package/node_modules/@typescript-eslint/types/dist/lib.js +6 -0
  1210. package/node_modules/@typescript-eslint/types/dist/lib.js.map +1 -0
  1211. package/node_modules/@typescript-eslint/types/dist/parser-options.d.ts +35 -0
  1212. package/node_modules/@typescript-eslint/types/dist/parser-options.d.ts.map +1 -0
  1213. package/node_modules/@typescript-eslint/types/dist/parser-options.js +3 -0
  1214. package/node_modules/@typescript-eslint/types/dist/parser-options.js.map +1 -0
  1215. package/node_modules/@typescript-eslint/types/dist/ts-estree.d.ts +8 -0
  1216. package/node_modules/@typescript-eslint/types/dist/ts-estree.d.ts.map +1 -0
  1217. package/node_modules/@typescript-eslint/types/dist/ts-estree.js +24 -0
  1218. package/node_modules/@typescript-eslint/types/dist/ts-estree.js.map +1 -0
  1219. package/node_modules/@typescript-eslint/types/package.json +56 -0
  1220. package/node_modules/@typescript-eslint/typescript-estree/CHANGELOG.md +1484 -0
  1221. package/node_modules/@typescript-eslint/typescript-estree/LICENSE +26 -0
  1222. package/node_modules/@typescript-eslint/typescript-estree/README.md +383 -0
  1223. package/node_modules/@typescript-eslint/typescript-estree/dist/ast-converter.d.ts +9 -0
  1224. package/node_modules/@typescript-eslint/typescript-estree/dist/ast-converter.d.ts.map +1 -0
  1225. package/node_modules/@typescript-eslint/typescript-estree/dist/ast-converter.js +60 -0
  1226. package/node_modules/@typescript-eslint/typescript-estree/dist/ast-converter.js.map +1 -0
  1227. package/node_modules/@typescript-eslint/typescript-estree/dist/convert-comments.d.ts +11 -0
  1228. package/node_modules/@typescript-eslint/typescript-estree/dist/convert-comments.d.ts.map +1 -0
  1229. package/node_modules/@typescript-eslint/typescript-estree/dist/convert-comments.js +59 -0
  1230. package/node_modules/@typescript-eslint/typescript-estree/dist/convert-comments.js.map +1 -0
  1231. package/node_modules/@typescript-eslint/typescript-estree/dist/convert.d.ts +156 -0
  1232. package/node_modules/@typescript-eslint/typescript-estree/dist/convert.d.ts.map +1 -0
  1233. package/node_modules/@typescript-eslint/typescript-estree/dist/convert.js +2278 -0
  1234. package/node_modules/@typescript-eslint/typescript-estree/dist/convert.js.map +1 -0
  1235. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/WatchCompilerHostOfConfigFile.d.ts +13 -0
  1236. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/WatchCompilerHostOfConfigFile.d.ts.map +1 -0
  1237. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/WatchCompilerHostOfConfigFile.js +6 -0
  1238. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/WatchCompilerHostOfConfigFile.js.map +1 -0
  1239. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/createDefaultProgram.d.ts +12 -0
  1240. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/createDefaultProgram.d.ts.map +1 -0
  1241. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/createDefaultProgram.js +62 -0
  1242. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/createDefaultProgram.js.map +1 -0
  1243. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/createIsolatedProgram.d.ts +9 -0
  1244. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/createIsolatedProgram.d.ts.map +1 -0
  1245. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/createIsolatedProgram.js +78 -0
  1246. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/createIsolatedProgram.js.map +1 -0
  1247. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/createProjectProgram.d.ts +11 -0
  1248. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/createProjectProgram.d.ts.map +1 -0
  1249. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/createProjectProgram.js +61 -0
  1250. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/createProjectProgram.js.map +1 -0
  1251. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/createSourceFile.d.ts +5 -0
  1252. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/createSourceFile.d.ts.map +1 -0
  1253. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/createSourceFile.js +36 -0
  1254. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/createSourceFile.js.map +1 -0
  1255. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/createWatchProgram.d.ts +19 -0
  1256. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/createWatchProgram.d.ts.map +1 -0
  1257. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/createWatchProgram.js +410 -0
  1258. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/createWatchProgram.js.map +1 -0
  1259. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/shared.d.ts +23 -0
  1260. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/shared.d.ts.map +1 -0
  1261. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/shared.js +127 -0
  1262. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/shared.js.map +1 -0
  1263. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/useProvidedPrograms.d.ts +13 -0
  1264. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/useProvidedPrograms.d.ts.map +1 -0
  1265. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/useProvidedPrograms.js +89 -0
  1266. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/useProvidedPrograms.js.map +1 -0
  1267. package/node_modules/@typescript-eslint/typescript-estree/dist/index.d.ts +9 -0
  1268. package/node_modules/@typescript-eslint/typescript-estree/dist/index.d.ts.map +1 -0
  1269. package/node_modules/@typescript-eslint/typescript-estree/dist/index.js +32 -0
  1270. package/node_modules/@typescript-eslint/typescript-estree/dist/index.js.map +1 -0
  1271. package/node_modules/@typescript-eslint/typescript-estree/dist/jsx/xhtml-entities.d.ts +2 -0
  1272. package/node_modules/@typescript-eslint/typescript-estree/dist/jsx/xhtml-entities.d.ts.map +1 -0
  1273. package/node_modules/@typescript-eslint/typescript-estree/dist/jsx/xhtml-entities.js +259 -0
  1274. package/node_modules/@typescript-eslint/typescript-estree/dist/jsx/xhtml-entities.js.map +1 -0
  1275. package/node_modules/@typescript-eslint/typescript-estree/dist/node-utils.d.ts +224 -0
  1276. package/node_modules/@typescript-eslint/typescript-estree/dist/node-utils.d.ts.map +1 -0
  1277. package/node_modules/@typescript-eslint/typescript-estree/dist/node-utils.js +559 -0
  1278. package/node_modules/@typescript-eslint/typescript-estree/dist/node-utils.js.map +1 -0
  1279. package/node_modules/@typescript-eslint/typescript-estree/dist/parser-options.d.ts +188 -0
  1280. package/node_modules/@typescript-eslint/typescript-estree/dist/parser-options.d.ts.map +1 -0
  1281. package/node_modules/@typescript-eslint/typescript-estree/dist/parser-options.js +3 -0
  1282. package/node_modules/@typescript-eslint/typescript-estree/dist/parser-options.js.map +1 -0
  1283. package/node_modules/@typescript-eslint/typescript-estree/dist/parser.d.ts +25 -0
  1284. package/node_modules/@typescript-eslint/typescript-estree/dist/parser.d.ts.map +1 -0
  1285. package/node_modules/@typescript-eslint/typescript-estree/dist/parser.js +522 -0
  1286. package/node_modules/@typescript-eslint/typescript-estree/dist/parser.js.map +1 -0
  1287. package/node_modules/@typescript-eslint/typescript-estree/dist/semantic-or-syntactic-errors.d.ts +13 -0
  1288. package/node_modules/@typescript-eslint/typescript-estree/dist/semantic-or-syntactic-errors.d.ts.map +1 -0
  1289. package/node_modules/@typescript-eslint/typescript-estree/dist/semantic-or-syntactic-errors.js +93 -0
  1290. package/node_modules/@typescript-eslint/typescript-estree/dist/semantic-or-syntactic-errors.js.map +1 -0
  1291. package/node_modules/@typescript-eslint/typescript-estree/dist/simple-traverse.d.ts +9 -0
  1292. package/node_modules/@typescript-eslint/typescript-estree/dist/simple-traverse.d.ts.map +1 -0
  1293. package/node_modules/@typescript-eslint/typescript-estree/dist/simple-traverse.js +54 -0
  1294. package/node_modules/@typescript-eslint/typescript-estree/dist/simple-traverse.js.map +1 -0
  1295. package/node_modules/@typescript-eslint/typescript-estree/dist/ts-estree/estree-to-ts-node-types.d.ts +173 -0
  1296. package/node_modules/@typescript-eslint/typescript-estree/dist/ts-estree/estree-to-ts-node-types.d.ts.map +1 -0
  1297. package/node_modules/@typescript-eslint/typescript-estree/dist/ts-estree/estree-to-ts-node-types.js +4 -0
  1298. package/node_modules/@typescript-eslint/typescript-estree/dist/ts-estree/estree-to-ts-node-types.js.map +1 -0
  1299. package/node_modules/@typescript-eslint/typescript-estree/dist/ts-estree/index.d.ts +4 -0
  1300. package/node_modules/@typescript-eslint/typescript-estree/dist/ts-estree/index.d.ts.map +1 -0
  1301. package/node_modules/@typescript-eslint/typescript-estree/dist/ts-estree/index.js +21 -0
  1302. package/node_modules/@typescript-eslint/typescript-estree/dist/ts-estree/index.js.map +1 -0
  1303. package/node_modules/@typescript-eslint/typescript-estree/dist/ts-estree/ts-nodes.d.ts +14 -0
  1304. package/node_modules/@typescript-eslint/typescript-estree/dist/ts-estree/ts-nodes.d.ts.map +1 -0
  1305. package/node_modules/@typescript-eslint/typescript-estree/dist/ts-estree/ts-nodes.js +3 -0
  1306. package/node_modules/@typescript-eslint/typescript-estree/dist/ts-estree/ts-nodes.js.map +1 -0
  1307. package/node_modules/@typescript-eslint/typescript-estree/dist/version-check.d.ts +3 -0
  1308. package/node_modules/@typescript-eslint/typescript-estree/dist/version-check.d.ts.map +1 -0
  1309. package/node_modules/@typescript-eslint/typescript-estree/dist/version-check.js +42 -0
  1310. package/node_modules/@typescript-eslint/typescript-estree/dist/version-check.js.map +1 -0
  1311. package/node_modules/@typescript-eslint/typescript-estree/node_modules/array-union/index.d.ts +25 -0
  1312. package/node_modules/@typescript-eslint/typescript-estree/node_modules/array-union/index.js +5 -0
  1313. package/node_modules/@typescript-eslint/typescript-estree/node_modules/array-union/license +9 -0
  1314. package/node_modules/@typescript-eslint/typescript-estree/node_modules/array-union/package.json +38 -0
  1315. package/node_modules/@typescript-eslint/typescript-estree/node_modules/array-union/readme.md +34 -0
  1316. package/node_modules/@typescript-eslint/typescript-estree/node_modules/globby/gitignore.js +120 -0
  1317. package/node_modules/@typescript-eslint/typescript-estree/node_modules/globby/index.d.ts +186 -0
  1318. package/node_modules/@typescript-eslint/typescript-estree/node_modules/globby/index.js +181 -0
  1319. package/node_modules/@typescript-eslint/typescript-estree/node_modules/globby/license +9 -0
  1320. package/node_modules/@typescript-eslint/typescript-estree/node_modules/globby/package.json +82 -0
  1321. package/node_modules/@typescript-eslint/typescript-estree/node_modules/globby/readme.md +170 -0
  1322. package/node_modules/@typescript-eslint/typescript-estree/node_modules/globby/stream-utils.js +46 -0
  1323. package/node_modules/@typescript-eslint/typescript-estree/node_modules/ignore/CHANGELOG.md +32 -0
  1324. package/node_modules/@typescript-eslint/typescript-estree/node_modules/ignore/LICENSE-MIT +21 -0
  1325. package/node_modules/@typescript-eslint/typescript-estree/node_modules/ignore/README.md +392 -0
  1326. package/node_modules/@typescript-eslint/typescript-estree/node_modules/ignore/index.d.ts +63 -0
  1327. package/node_modules/@typescript-eslint/typescript-estree/node_modules/ignore/index.js +597 -0
  1328. package/node_modules/@typescript-eslint/typescript-estree/node_modules/ignore/legacy.js +495 -0
  1329. package/node_modules/@typescript-eslint/typescript-estree/node_modules/ignore/package.json +70 -0
  1330. package/node_modules/@typescript-eslint/typescript-estree/node_modules/slash/index.d.ts +25 -0
  1331. package/node_modules/@typescript-eslint/typescript-estree/node_modules/slash/index.js +11 -0
  1332. package/node_modules/@typescript-eslint/typescript-estree/node_modules/slash/license +9 -0
  1333. package/node_modules/@typescript-eslint/typescript-estree/node_modules/slash/package.json +35 -0
  1334. package/node_modules/@typescript-eslint/typescript-estree/node_modules/slash/readme.md +44 -0
  1335. package/node_modules/@typescript-eslint/typescript-estree/package.json +86 -0
  1336. package/node_modules/@typescript-eslint/visitor-keys/CHANGELOG.md +622 -0
  1337. package/node_modules/@typescript-eslint/visitor-keys/LICENSE +21 -0
  1338. package/node_modules/@typescript-eslint/visitor-keys/README.md +13 -0
  1339. package/node_modules/@typescript-eslint/visitor-keys/dist/get-keys.d.ts +4 -0
  1340. package/node_modules/@typescript-eslint/visitor-keys/dist/get-keys.d.ts.map +1 -0
  1341. package/node_modules/@typescript-eslint/visitor-keys/dist/get-keys.js +7 -0
  1342. package/node_modules/@typescript-eslint/visitor-keys/dist/get-keys.js.map +1 -0
  1343. package/node_modules/@typescript-eslint/visitor-keys/dist/index.d.ts +3 -0
  1344. package/node_modules/@typescript-eslint/visitor-keys/dist/index.d.ts.map +1 -0
  1345. package/node_modules/@typescript-eslint/visitor-keys/dist/index.js +8 -0
  1346. package/node_modules/@typescript-eslint/visitor-keys/dist/index.js.map +1 -0
  1347. package/node_modules/@typescript-eslint/visitor-keys/dist/visitor-keys.d.ts +6 -0
  1348. package/node_modules/@typescript-eslint/visitor-keys/dist/visitor-keys.d.ts.map +1 -0
  1349. package/node_modules/@typescript-eslint/visitor-keys/dist/visitor-keys.js +151 -0
  1350. package/node_modules/@typescript-eslint/visitor-keys/dist/visitor-keys.js.map +1 -0
  1351. package/node_modules/@typescript-eslint/visitor-keys/package.json +59 -0
  1352. package/node_modules/braces/CHANGELOG.md +184 -0
  1353. package/node_modules/braces/LICENSE +21 -0
  1354. package/node_modules/braces/README.md +593 -0
  1355. package/node_modules/braces/index.js +170 -0
  1356. package/node_modules/braces/lib/compile.js +57 -0
  1357. package/node_modules/braces/lib/constants.js +57 -0
  1358. package/node_modules/braces/lib/expand.js +113 -0
  1359. package/node_modules/braces/lib/parse.js +333 -0
  1360. package/node_modules/braces/lib/stringify.js +32 -0
  1361. package/node_modules/braces/lib/utils.js +112 -0
  1362. package/node_modules/braces/package.json +77 -0
  1363. package/node_modules/debug/LICENSE +19 -0
  1364. package/node_modules/debug/README.md +455 -0
  1365. package/node_modules/debug/node_modules/ms/index.js +162 -0
  1366. package/node_modules/debug/node_modules/ms/license.md +21 -0
  1367. package/node_modules/debug/node_modules/ms/package.json +37 -0
  1368. package/node_modules/debug/node_modules/ms/readme.md +60 -0
  1369. package/node_modules/debug/package.json +59 -0
  1370. package/node_modules/debug/src/browser.js +269 -0
  1371. package/node_modules/debug/src/common.js +274 -0
  1372. package/node_modules/debug/src/index.js +10 -0
  1373. package/node_modules/debug/src/node.js +263 -0
  1374. package/node_modules/dir-glob/index.js +75 -0
  1375. package/node_modules/dir-glob/license +9 -0
  1376. package/node_modules/dir-glob/package.json +38 -0
  1377. package/node_modules/dir-glob/readme.md +76 -0
  1378. package/node_modules/eslint-config-xo-typescript/index.js +665 -0
  1379. package/node_modules/eslint-config-xo-typescript/license +9 -0
  1380. package/node_modules/eslint-config-xo-typescript/package.json +59 -0
  1381. package/node_modules/eslint-config-xo-typescript/readme.md +67 -0
  1382. package/node_modules/eslint-config-xo-typescript/space.js +15 -0
  1383. package/node_modules/eslint-scope/CHANGELOG.md +70 -0
  1384. package/node_modules/eslint-scope/LICENSE +22 -0
  1385. package/node_modules/eslint-scope/README.md +54 -0
  1386. package/node_modules/eslint-scope/lib/definition.js +86 -0
  1387. package/node_modules/eslint-scope/lib/index.js +165 -0
  1388. package/node_modules/eslint-scope/lib/pattern-visitor.js +152 -0
  1389. package/node_modules/eslint-scope/lib/reference.js +167 -0
  1390. package/node_modules/eslint-scope/lib/referencer.js +629 -0
  1391. package/node_modules/eslint-scope/lib/scope-manager.js +247 -0
  1392. package/node_modules/eslint-scope/lib/scope.js +748 -0
  1393. package/node_modules/eslint-scope/lib/variable.js +88 -0
  1394. package/node_modules/eslint-scope/node_modules/estraverse/.jshintrc +16 -0
  1395. package/node_modules/eslint-scope/node_modules/estraverse/LICENSE.BSD +19 -0
  1396. package/node_modules/eslint-scope/node_modules/estraverse/README.md +153 -0
  1397. package/node_modules/eslint-scope/node_modules/estraverse/estraverse.js +782 -0
  1398. package/node_modules/eslint-scope/node_modules/estraverse/gulpfile.js +70 -0
  1399. package/node_modules/eslint-scope/node_modules/estraverse/package.json +40 -0
  1400. package/node_modules/eslint-scope/package.json +48 -0
  1401. package/node_modules/eslint-utils/LICENSE +21 -0
  1402. package/node_modules/eslint-utils/README.md +38 -0
  1403. package/node_modules/eslint-utils/index.js +1956 -0
  1404. package/node_modules/eslint-utils/index.js.map +1 -0
  1405. package/node_modules/eslint-utils/index.mjs +1914 -0
  1406. package/node_modules/eslint-utils/index.mjs.map +1 -0
  1407. package/node_modules/eslint-utils/node_modules/eslint-visitor-keys/CHANGELOG.md +36 -0
  1408. package/node_modules/eslint-utils/node_modules/eslint-visitor-keys/LICENSE +201 -0
  1409. package/node_modules/eslint-utils/node_modules/eslint-visitor-keys/README.md +98 -0
  1410. package/node_modules/eslint-utils/node_modules/eslint-visitor-keys/lib/index.js +81 -0
  1411. package/node_modules/eslint-utils/node_modules/eslint-visitor-keys/lib/visitor-keys.json +289 -0
  1412. package/node_modules/eslint-utils/node_modules/eslint-visitor-keys/package.json +39 -0
  1413. package/node_modules/eslint-utils/package.json +78 -0
  1414. package/node_modules/eslint-visitor-keys/CHANGELOG.md +42 -0
  1415. package/node_modules/eslint-visitor-keys/LICENSE +201 -0
  1416. package/node_modules/eslint-visitor-keys/README.md +106 -0
  1417. package/node_modules/eslint-visitor-keys/dist/eslint-visitor-keys.cjs +364 -0
  1418. package/node_modules/eslint-visitor-keys/lib/index.js +59 -0
  1419. package/node_modules/eslint-visitor-keys/lib/visitor-keys.js +300 -0
  1420. package/node_modules/eslint-visitor-keys/package.json +55 -0
  1421. package/node_modules/esrecurse/.babelrc +3 -0
  1422. package/node_modules/esrecurse/README.md +171 -0
  1423. package/node_modules/esrecurse/esrecurse.js +117 -0
  1424. package/node_modules/esrecurse/gulpfile.babel.js +92 -0
  1425. package/node_modules/esrecurse/package.json +52 -0
  1426. package/node_modules/estraverse/.jshintrc +16 -0
  1427. package/node_modules/estraverse/LICENSE.BSD +19 -0
  1428. package/node_modules/estraverse/README.md +153 -0
  1429. package/node_modules/estraverse/estraverse.js +805 -0
  1430. package/node_modules/estraverse/gulpfile.js +70 -0
  1431. package/node_modules/estraverse/package.json +40 -0
  1432. package/node_modules/fast-glob/LICENSE +21 -0
  1433. package/node_modules/fast-glob/README.md +795 -0
  1434. package/node_modules/fast-glob/out/index.d.ts +27 -0
  1435. package/node_modules/fast-glob/out/index.js +67 -0
  1436. package/node_modules/fast-glob/out/managers/tasks.d.ts +22 -0
  1437. package/node_modules/fast-glob/out/managers/tasks.js +80 -0
  1438. package/node_modules/fast-glob/out/providers/async.d.ts +11 -0
  1439. package/node_modules/fast-glob/out/providers/async.js +28 -0
  1440. package/node_modules/fast-glob/out/providers/filters/deep.d.ts +16 -0
  1441. package/node_modules/fast-glob/out/providers/filters/deep.js +62 -0
  1442. package/node_modules/fast-glob/out/providers/filters/entry.d.ts +16 -0
  1443. package/node_modules/fast-glob/out/providers/filters/entry.js +56 -0
  1444. package/node_modules/fast-glob/out/providers/filters/error.d.ts +8 -0
  1445. package/node_modules/fast-glob/out/providers/filters/error.js +15 -0
  1446. package/node_modules/fast-glob/out/providers/matchers/matcher.d.ts +33 -0
  1447. package/node_modules/fast-glob/out/providers/matchers/matcher.js +50 -0
  1448. package/node_modules/fast-glob/out/providers/matchers/partial.d.ts +4 -0
  1449. package/node_modules/fast-glob/out/providers/matchers/partial.js +38 -0
  1450. package/node_modules/fast-glob/out/providers/provider.d.ts +19 -0
  1451. package/node_modules/fast-glob/out/providers/provider.js +48 -0
  1452. package/node_modules/fast-glob/out/providers/stream.d.ts +11 -0
  1453. package/node_modules/fast-glob/out/providers/stream.js +31 -0
  1454. package/node_modules/fast-glob/out/providers/sync.d.ts +9 -0
  1455. package/node_modules/fast-glob/out/providers/sync.js +23 -0
  1456. package/node_modules/fast-glob/out/providers/transformers/entry.d.ts +8 -0
  1457. package/node_modules/fast-glob/out/providers/transformers/entry.js +26 -0
  1458. package/node_modules/fast-glob/out/readers/reader.d.ts +15 -0
  1459. package/node_modules/fast-glob/out/readers/reader.js +33 -0
  1460. package/node_modules/fast-glob/out/readers/stream.d.ts +14 -0
  1461. package/node_modules/fast-glob/out/readers/stream.js +55 -0
  1462. package/node_modules/fast-glob/out/readers/sync.d.ts +12 -0
  1463. package/node_modules/fast-glob/out/readers/sync.js +43 -0
  1464. package/node_modules/fast-glob/out/settings.d.ts +164 -0
  1465. package/node_modules/fast-glob/out/settings.js +57 -0
  1466. package/node_modules/fast-glob/out/types/index.d.ts +31 -0
  1467. package/node_modules/fast-glob/out/types/index.js +2 -0
  1468. package/node_modules/fast-glob/out/utils/array.d.ts +2 -0
  1469. package/node_modules/fast-glob/out/utils/array.js +22 -0
  1470. package/node_modules/fast-glob/out/utils/errno.d.ts +2 -0
  1471. package/node_modules/fast-glob/out/utils/errno.js +7 -0
  1472. package/node_modules/fast-glob/out/utils/fs.d.ts +4 -0
  1473. package/node_modules/fast-glob/out/utils/fs.js +19 -0
  1474. package/node_modules/fast-glob/out/utils/index.d.ts +8 -0
  1475. package/node_modules/fast-glob/out/utils/index.js +17 -0
  1476. package/node_modules/fast-glob/out/utils/path.d.ts +8 -0
  1477. package/node_modules/fast-glob/out/utils/path.js +33 -0
  1478. package/node_modules/fast-glob/out/utils/pattern.d.ts +42 -0
  1479. package/node_modules/fast-glob/out/utils/pattern.js +157 -0
  1480. package/node_modules/fast-glob/out/utils/stream.d.ts +3 -0
  1481. package/node_modules/fast-glob/out/utils/stream.js +17 -0
  1482. package/node_modules/fast-glob/out/utils/string.d.ts +2 -0
  1483. package/node_modules/fast-glob/out/utils/string.js +11 -0
  1484. package/node_modules/fast-glob/package.json +94 -0
  1485. package/node_modules/fastq/.github/dependabot.yml +11 -0
  1486. package/node_modules/fastq/.github/workflows/ci.yml +50 -0
  1487. package/node_modules/fastq/LICENSE +13 -0
  1488. package/node_modules/fastq/README.md +309 -0
  1489. package/node_modules/fastq/bench.js +66 -0
  1490. package/node_modules/fastq/example.js +14 -0
  1491. package/node_modules/fastq/example.mjs +11 -0
  1492. package/node_modules/fastq/index.d.ts +37 -0
  1493. package/node_modules/fastq/package.json +52 -0
  1494. package/node_modules/fastq/queue.js +283 -0
  1495. package/node_modules/fastq/test/example.ts +81 -0
  1496. package/node_modules/fastq/test/promise.js +221 -0
  1497. package/node_modules/fastq/test/test.js +566 -0
  1498. package/node_modules/fastq/test/tsconfig.json +11 -0
  1499. package/node_modules/fill-range/LICENSE +21 -0
  1500. package/node_modules/fill-range/README.md +237 -0
  1501. package/node_modules/fill-range/index.js +249 -0
  1502. package/node_modules/fill-range/package.json +69 -0
  1503. package/node_modules/functional-red-black-tree/.npmignore +16 -0
  1504. package/node_modules/functional-red-black-tree/LICENSE +22 -0
  1505. package/node_modules/functional-red-black-tree/README.md +237 -0
  1506. package/node_modules/functional-red-black-tree/bench/test.js +11 -0
  1507. package/node_modules/functional-red-black-tree/package.json +40 -0
  1508. package/node_modules/functional-red-black-tree/rbtree.js +996 -0
  1509. package/node_modules/functional-red-black-tree/test/test.js +479 -0
  1510. package/node_modules/glob-parent/CHANGELOG.md +110 -0
  1511. package/node_modules/glob-parent/LICENSE +15 -0
  1512. package/node_modules/glob-parent/README.md +137 -0
  1513. package/node_modules/glob-parent/index.js +42 -0
  1514. package/node_modules/glob-parent/package.json +48 -0
  1515. package/node_modules/is-extglob/LICENSE +21 -0
  1516. package/node_modules/is-extglob/README.md +107 -0
  1517. package/node_modules/is-extglob/index.js +20 -0
  1518. package/node_modules/is-extglob/package.json +69 -0
  1519. package/node_modules/is-glob/LICENSE +21 -0
  1520. package/node_modules/is-glob/README.md +206 -0
  1521. package/node_modules/is-glob/index.js +150 -0
  1522. package/node_modules/is-glob/package.json +81 -0
  1523. package/node_modules/is-number/LICENSE +21 -0
  1524. package/node_modules/is-number/README.md +187 -0
  1525. package/node_modules/is-number/index.js +18 -0
  1526. package/node_modules/is-number/package.json +82 -0
  1527. package/node_modules/lru-cache/LICENSE +15 -0
  1528. package/node_modules/lru-cache/README.md +166 -0
  1529. package/node_modules/lru-cache/index.js +334 -0
  1530. package/node_modules/lru-cache/package.json +34 -0
  1531. package/node_modules/merge2/LICENSE +21 -0
  1532. package/node_modules/merge2/README.md +144 -0
  1533. package/node_modules/merge2/index.js +144 -0
  1534. package/node_modules/merge2/package.json +43 -0
  1535. package/node_modules/micromatch/CHANGELOG.md +109 -0
  1536. package/node_modules/micromatch/LICENSE +21 -0
  1537. package/node_modules/micromatch/README.md +1008 -0
  1538. package/node_modules/micromatch/index.js +467 -0
  1539. package/node_modules/micromatch/package.json +119 -0
  1540. package/node_modules/path-type/index.d.ts +51 -0
  1541. package/node_modules/path-type/index.js +43 -0
  1542. package/node_modules/path-type/license +9 -0
  1543. package/node_modules/path-type/package.json +45 -0
  1544. package/node_modules/path-type/readme.md +72 -0
  1545. package/node_modules/picomatch/CHANGELOG.md +126 -0
  1546. package/node_modules/picomatch/LICENSE +21 -0
  1547. package/node_modules/picomatch/README.md +707 -0
  1548. package/node_modules/picomatch/index.js +3 -0
  1549. package/node_modules/picomatch/lib/constants.js +179 -0
  1550. package/node_modules/picomatch/lib/parse.js +1084 -0
  1551. package/node_modules/picomatch/lib/picomatch.js +342 -0
  1552. package/node_modules/picomatch/lib/scan.js +391 -0
  1553. package/node_modules/picomatch/lib/utils.js +64 -0
  1554. package/node_modules/picomatch/package.json +81 -0
  1555. package/node_modules/queue-microtask/LICENSE +20 -0
  1556. package/node_modules/queue-microtask/README.md +90 -0
  1557. package/node_modules/queue-microtask/index.d.ts +2 -0
  1558. package/node_modules/queue-microtask/index.js +9 -0
  1559. package/node_modules/queue-microtask/package.json +55 -0
  1560. package/node_modules/regexpp/LICENSE +21 -0
  1561. package/node_modules/regexpp/README.md +178 -0
  1562. package/node_modules/regexpp/index.d.ts +248 -0
  1563. package/node_modules/regexpp/index.js +2096 -0
  1564. package/node_modules/regexpp/index.js.map +1 -0
  1565. package/node_modules/regexpp/index.mjs +2087 -0
  1566. package/node_modules/regexpp/index.mjs.map +1 -0
  1567. package/node_modules/regexpp/package.json +91 -0
  1568. package/node_modules/reusify/.coveralls.yml +1 -0
  1569. package/node_modules/reusify/.travis.yml +28 -0
  1570. package/node_modules/reusify/LICENSE +22 -0
  1571. package/node_modules/reusify/README.md +145 -0
  1572. package/node_modules/reusify/benchmarks/createNoCodeFunction.js +30 -0
  1573. package/node_modules/reusify/benchmarks/fib.js +13 -0
  1574. package/node_modules/reusify/benchmarks/reuseNoCodeFunction.js +38 -0
  1575. package/node_modules/reusify/package.json +45 -0
  1576. package/node_modules/reusify/reusify.js +33 -0
  1577. package/node_modules/reusify/test.js +66 -0
  1578. package/node_modules/run-parallel/LICENSE +20 -0
  1579. package/node_modules/run-parallel/README.md +85 -0
  1580. package/node_modules/run-parallel/index.js +51 -0
  1581. package/node_modules/run-parallel/package.json +58 -0
  1582. package/node_modules/semver/CHANGELOG.md +111 -0
  1583. package/node_modules/semver/LICENSE +15 -0
  1584. package/node_modules/semver/README.md +566 -0
  1585. package/node_modules/semver/bin/semver.js +173 -0
  1586. package/node_modules/semver/classes/comparator.js +135 -0
  1587. package/node_modules/semver/classes/index.js +5 -0
  1588. package/node_modules/semver/classes/range.js +510 -0
  1589. package/node_modules/semver/classes/semver.js +287 -0
  1590. package/node_modules/semver/functions/clean.js +6 -0
  1591. package/node_modules/semver/functions/cmp.js +48 -0
  1592. package/node_modules/semver/functions/coerce.js +51 -0
  1593. package/node_modules/semver/functions/compare-build.js +7 -0
  1594. package/node_modules/semver/functions/compare-loose.js +3 -0
  1595. package/node_modules/semver/functions/compare.js +5 -0
  1596. package/node_modules/semver/functions/diff.js +23 -0
  1597. package/node_modules/semver/functions/eq.js +3 -0
  1598. package/node_modules/semver/functions/gt.js +3 -0
  1599. package/node_modules/semver/functions/gte.js +3 -0
  1600. package/node_modules/semver/functions/inc.js +15 -0
  1601. package/node_modules/semver/functions/lt.js +3 -0
  1602. package/node_modules/semver/functions/lte.js +3 -0
  1603. package/node_modules/semver/functions/major.js +3 -0
  1604. package/node_modules/semver/functions/minor.js +3 -0
  1605. package/node_modules/semver/functions/neq.js +3 -0
  1606. package/node_modules/semver/functions/parse.js +33 -0
  1607. package/node_modules/semver/functions/patch.js +3 -0
  1608. package/node_modules/semver/functions/prerelease.js +6 -0
  1609. package/node_modules/semver/functions/rcompare.js +3 -0
  1610. package/node_modules/semver/functions/rsort.js +3 -0
  1611. package/node_modules/semver/functions/satisfies.js +10 -0
  1612. package/node_modules/semver/functions/sort.js +3 -0
  1613. package/node_modules/semver/functions/valid.js +6 -0
  1614. package/node_modules/semver/index.js +48 -0
  1615. package/node_modules/semver/internal/constants.js +17 -0
  1616. package/node_modules/semver/internal/debug.js +9 -0
  1617. package/node_modules/semver/internal/identifiers.js +23 -0
  1618. package/node_modules/semver/internal/parse-options.js +11 -0
  1619. package/node_modules/semver/internal/re.js +182 -0
  1620. package/node_modules/semver/package.json +41 -0
  1621. package/node_modules/semver/preload.js +2 -0
  1622. package/node_modules/semver/range.bnf +16 -0
  1623. package/node_modules/semver/ranges/gtr.js +4 -0
  1624. package/node_modules/semver/ranges/intersects.js +7 -0
  1625. package/node_modules/semver/ranges/ltr.js +4 -0
  1626. package/node_modules/semver/ranges/max-satisfying.js +25 -0
  1627. package/node_modules/semver/ranges/min-satisfying.js +24 -0
  1628. package/node_modules/semver/ranges/min-version.js +60 -0
  1629. package/node_modules/semver/ranges/outside.js +80 -0
  1630. package/node_modules/semver/ranges/simplify.js +44 -0
  1631. package/node_modules/semver/ranges/subset.js +222 -0
  1632. package/node_modules/semver/ranges/to-comparators.js +8 -0
  1633. package/node_modules/semver/ranges/valid.js +11 -0
  1634. package/node_modules/to-regex-range/LICENSE +21 -0
  1635. package/node_modules/to-regex-range/README.md +305 -0
  1636. package/node_modules/to-regex-range/index.js +288 -0
  1637. package/node_modules/to-regex-range/package.json +88 -0
  1638. package/node_modules/tslib/CopyrightNotice.txt +15 -0
  1639. package/node_modules/tslib/LICENSE.txt +12 -0
  1640. package/node_modules/tslib/README.md +142 -0
  1641. package/node_modules/tslib/modules/index.js +51 -0
  1642. package/node_modules/tslib/modules/package.json +3 -0
  1643. package/node_modules/tslib/package.json +37 -0
  1644. package/node_modules/tslib/test/validateModuleExportsMatchCommonJS/index.js +23 -0
  1645. package/node_modules/tslib/test/validateModuleExportsMatchCommonJS/package.json +6 -0
  1646. package/node_modules/tslib/tslib.d.ts +37 -0
  1647. package/node_modules/tslib/tslib.es6.html +1 -0
  1648. package/node_modules/tslib/tslib.es6.js +218 -0
  1649. package/node_modules/tslib/tslib.html +1 -0
  1650. package/node_modules/tslib/tslib.js +284 -0
  1651. package/node_modules/tsutils/CHANGELOG.md +811 -0
  1652. package/node_modules/tsutils/LICENSE +21 -0
  1653. package/node_modules/tsutils/README.md +61 -0
  1654. package/node_modules/tsutils/index.d.ts +2 -0
  1655. package/node_modules/tsutils/index.js +6 -0
  1656. package/node_modules/tsutils/index.js.map +1 -0
  1657. package/node_modules/tsutils/package.json +63 -0
  1658. package/node_modules/tsutils/typeguard/2.8/index.d.ts +2 -0
  1659. package/node_modules/tsutils/typeguard/2.8/index.js +6 -0
  1660. package/node_modules/tsutils/typeguard/2.8/index.js.map +1 -0
  1661. package/node_modules/tsutils/typeguard/2.8/node.d.ts +155 -0
  1662. package/node_modules/tsutils/typeguard/2.8/node.js +714 -0
  1663. package/node_modules/tsutils/typeguard/2.8/node.js.map +1 -0
  1664. package/node_modules/tsutils/typeguard/2.8/type.d.ts +18 -0
  1665. package/node_modules/tsutils/typeguard/2.8/type.js +77 -0
  1666. package/node_modules/tsutils/typeguard/2.8/type.js.map +1 -0
  1667. package/node_modules/tsutils/typeguard/2.9/index.d.ts +2 -0
  1668. package/node_modules/tsutils/typeguard/2.9/index.js +6 -0
  1669. package/node_modules/tsutils/typeguard/2.9/index.js.map +1 -0
  1670. package/node_modules/tsutils/typeguard/2.9/node.d.ts +3 -0
  1671. package/node_modules/tsutils/typeguard/2.9/node.js +11 -0
  1672. package/node_modules/tsutils/typeguard/2.9/node.js.map +1 -0
  1673. package/node_modules/tsutils/typeguard/2.9/type.d.ts +1 -0
  1674. package/node_modules/tsutils/typeguard/2.9/type.js +5 -0
  1675. package/node_modules/tsutils/typeguard/2.9/type.js.map +1 -0
  1676. package/node_modules/tsutils/typeguard/3.0/index.d.ts +2 -0
  1677. package/node_modules/tsutils/typeguard/3.0/index.js +6 -0
  1678. package/node_modules/tsutils/typeguard/3.0/index.js.map +1 -0
  1679. package/node_modules/tsutils/typeguard/3.0/node.d.ts +5 -0
  1680. package/node_modules/tsutils/typeguard/3.0/node.js +19 -0
  1681. package/node_modules/tsutils/typeguard/3.0/node.js.map +1 -0
  1682. package/node_modules/tsutils/typeguard/3.0/type.d.ts +6 -0
  1683. package/node_modules/tsutils/typeguard/3.0/type.js +16 -0
  1684. package/node_modules/tsutils/typeguard/3.0/type.js.map +1 -0
  1685. package/node_modules/tsutils/typeguard/3.2/index.d.ts +2 -0
  1686. package/node_modules/tsutils/typeguard/3.2/index.js +6 -0
  1687. package/node_modules/tsutils/typeguard/3.2/index.js.map +1 -0
  1688. package/node_modules/tsutils/typeguard/3.2/node.d.ts +3 -0
  1689. package/node_modules/tsutils/typeguard/3.2/node.js +11 -0
  1690. package/node_modules/tsutils/typeguard/3.2/node.js.map +1 -0
  1691. package/node_modules/tsutils/typeguard/3.2/type.d.ts +1 -0
  1692. package/node_modules/tsutils/typeguard/3.2/type.js +5 -0
  1693. package/node_modules/tsutils/typeguard/3.2/type.js.map +1 -0
  1694. package/node_modules/tsutils/typeguard/index.d.ts +2 -0
  1695. package/node_modules/tsutils/typeguard/index.js +6 -0
  1696. package/node_modules/tsutils/typeguard/index.js.map +1 -0
  1697. package/node_modules/tsutils/typeguard/next/index.d.ts +2 -0
  1698. package/node_modules/tsutils/typeguard/next/index.js +6 -0
  1699. package/node_modules/tsutils/typeguard/next/index.js.map +1 -0
  1700. package/node_modules/tsutils/typeguard/next/node.d.ts +1 -0
  1701. package/node_modules/tsutils/typeguard/next/node.js +5 -0
  1702. package/node_modules/tsutils/typeguard/next/node.js.map +1 -0
  1703. package/node_modules/tsutils/typeguard/next/type.d.ts +1 -0
  1704. package/node_modules/tsutils/typeguard/next/type.js +5 -0
  1705. package/node_modules/tsutils/typeguard/next/type.js.map +1 -0
  1706. package/node_modules/tsutils/typeguard/node.d.ts +1 -0
  1707. package/node_modules/tsutils/typeguard/node.js +5 -0
  1708. package/node_modules/tsutils/typeguard/node.js.map +1 -0
  1709. package/node_modules/tsutils/typeguard/type.d.ts +1 -0
  1710. package/node_modules/tsutils/typeguard/type.js +5 -0
  1711. package/node_modules/tsutils/typeguard/type.js.map +1 -0
  1712. package/node_modules/tsutils/util/control-flow.d.ts +24 -0
  1713. package/node_modules/tsutils/util/control-flow.js +296 -0
  1714. package/node_modules/tsutils/util/control-flow.js.map +1 -0
  1715. package/node_modules/tsutils/util/convert-ast.d.ts +33 -0
  1716. package/node_modules/tsutils/util/convert-ast.js +79 -0
  1717. package/node_modules/tsutils/util/convert-ast.js.map +1 -0
  1718. package/node_modules/tsutils/util/index.d.ts +5 -0
  1719. package/node_modules/tsutils/util/index.js +9 -0
  1720. package/node_modules/tsutils/util/index.js.map +1 -0
  1721. package/node_modules/tsutils/util/type.d.ts +35 -0
  1722. package/node_modules/tsutils/util/type.js +331 -0
  1723. package/node_modules/tsutils/util/type.js.map +1 -0
  1724. package/node_modules/tsutils/util/usage.d.ts +30 -0
  1725. package/node_modules/tsutils/util/usage.js +658 -0
  1726. package/node_modules/tsutils/util/usage.js.map +1 -0
  1727. package/node_modules/tsutils/util/util.d.ts +265 -0
  1728. package/node_modules/tsutils/util/util.js +1686 -0
  1729. package/node_modules/tsutils/util/util.js.map +1 -0
  1730. package/node_modules/yallist/LICENSE +15 -0
  1731. package/node_modules/yallist/README.md +204 -0
  1732. package/node_modules/yallist/iterator.js +8 -0
  1733. package/node_modules/yallist/package.json +29 -0
  1734. package/node_modules/yallist/yallist.js +426 -0
  1735. package/package.json +1 -1
@@ -0,0 +1,1484 @@
1
+ # Change Log
2
+
3
+ All notable changes to this project will be documented in this file.
4
+ See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
+
6
+ # [5.2.0](https://github.com/typescript-eslint/typescript-eslint/compare/v5.1.0...v5.2.0) (2021-10-25)
7
+
8
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
9
+
10
+
11
+
12
+
13
+
14
+ # [5.1.0](https://github.com/typescript-eslint/typescript-eslint/compare/v5.0.0...v5.1.0) (2021-10-18)
15
+
16
+
17
+ ### Bug Fixes
18
+
19
+ * **typescript-estree:** support private optional property definition ([#3997](https://github.com/typescript-eslint/typescript-eslint/issues/3997)) ([8605e08](https://github.com/typescript-eslint/typescript-eslint/commit/8605e080a4dac4a277e6108cd9ed1e5a707302fa))
20
+
21
+
22
+
23
+
24
+
25
+ # [5.0.0](https://github.com/typescript-eslint/typescript-eslint/compare/v4.33.0...v5.0.0) (2021-10-11)
26
+
27
+
28
+ ### Bug Fixes
29
+
30
+ * **typescript-estree:** change `source` of ExportNamedDeclaration to Literal from Expression ([#3763](https://github.com/typescript-eslint/typescript-eslint/issues/3763)) ([dc5a0f5](https://github.com/typescript-eslint/typescript-eslint/commit/dc5a0f5104b400f4422b8d67ecfc6cc7a32613a2))
31
+
32
+
33
+ ### Features
34
+
35
+ * **ast-spec:** bring `Node` objects in line with ESTree ([#3771](https://github.com/typescript-eslint/typescript-eslint/issues/3771)) ([dd14064](https://github.com/typescript-eslint/typescript-eslint/commit/dd140643b457aa515cc21fcda2b3cd4acc2a1c5c))
36
+ * **eslint-plugin:** update recommended configs ([#3809](https://github.com/typescript-eslint/typescript-eslint/issues/3809)) ([deeb7bb](https://github.com/typescript-eslint/typescript-eslint/commit/deeb7bb9334d301c6af56aefd37d318231af11ef))
37
+ * align class property representation with ESTree ([#3806](https://github.com/typescript-eslint/typescript-eslint/issues/3806)) ([22fa5c0](https://github.com/typescript-eslint/typescript-eslint/commit/22fa5c0c4705ed2898f00b7cacc5dd642d859275)), closes [#3430](https://github.com/typescript-eslint/typescript-eslint/issues/3430) [#3077](https://github.com/typescript-eslint/typescript-eslint/issues/3077)
38
+ * remove `TSParenthesizedType` ([#3340](https://github.com/typescript-eslint/typescript-eslint/issues/3340)) ([c8ee432](https://github.com/typescript-eslint/typescript-eslint/commit/c8ee43269faea4c04ec02eaa2b81a0aa6eec5d3e)), closes [#3136](https://github.com/typescript-eslint/typescript-eslint/issues/3136)
39
+ * support `PrivateIdentifier` ([#3808](https://github.com/typescript-eslint/typescript-eslint/issues/3808)) ([0eefe5e](https://github.com/typescript-eslint/typescript-eslint/commit/0eefe5e49d21af3f1e3e2d9a90c2e49929863ac2)), closes [#3430](https://github.com/typescript-eslint/typescript-eslint/issues/3430) [#2933](https://github.com/typescript-eslint/typescript-eslint/issues/2933)
40
+ * **eslint-plugin:** removed value from abstract property nodes ([#3765](https://github.com/typescript-eslint/typescript-eslint/issues/3765)) ([5823524](https://github.com/typescript-eslint/typescript-eslint/commit/58235241714596b641a1e8b39c569e561e0039b4)), closes [#3748](https://github.com/typescript-eslint/typescript-eslint/issues/3748)
41
+ * **typescript-estree:** remove legacy `useJSXTextNode` option ([#3109](https://github.com/typescript-eslint/typescript-eslint/issues/3109)) ([5b84b98](https://github.com/typescript-eslint/typescript-eslint/commit/5b84b98fb3cf68d944b7d4e970f39f4e88f0b2d5))
42
+
43
+
44
+
45
+
46
+
47
+ # [4.33.0](https://github.com/typescript-eslint/typescript-eslint/compare/v4.32.0...v4.33.0) (2021-10-04)
48
+
49
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
50
+
51
+
52
+
53
+
54
+
55
+ # [4.32.0](https://github.com/typescript-eslint/typescript-eslint/compare/v4.31.2...v4.32.0) (2021-09-27)
56
+
57
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
58
+
59
+
60
+
61
+
62
+
63
+ ## [4.31.2](https://github.com/typescript-eslint/typescript-eslint/compare/v4.31.1...v4.31.2) (2021-09-20)
64
+
65
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
66
+
67
+
68
+
69
+
70
+
71
+ ## [4.31.1](https://github.com/typescript-eslint/typescript-eslint/compare/v4.31.0...v4.31.1) (2021-09-13)
72
+
73
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
74
+
75
+
76
+
77
+
78
+
79
+ # [4.31.0](https://github.com/typescript-eslint/typescript-eslint/compare/v4.30.0...v4.31.0) (2021-09-06)
80
+
81
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
82
+
83
+
84
+
85
+
86
+
87
+ # [4.30.0](https://github.com/typescript-eslint/typescript-eslint/compare/v4.29.3...v4.30.0) (2021-08-30)
88
+
89
+
90
+ ### Features
91
+
92
+ * **typescript-estree:** add support for class static blocks ([#3730](https://github.com/typescript-eslint/typescript-eslint/issues/3730)) ([f81831b](https://github.com/typescript-eslint/typescript-eslint/commit/f81831bd279a32da6dbab0f1c061053ea43965f6))
93
+
94
+
95
+
96
+
97
+
98
+ ## [4.29.3](https://github.com/typescript-eslint/typescript-eslint/compare/v4.29.2...v4.29.3) (2021-08-23)
99
+
100
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
101
+
102
+
103
+
104
+
105
+
106
+ ## [4.29.2](https://github.com/typescript-eslint/typescript-eslint/compare/v4.29.1...v4.29.2) (2021-08-16)
107
+
108
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
109
+
110
+
111
+
112
+
113
+
114
+ ## [4.29.1](https://github.com/typescript-eslint/typescript-eslint/compare/v4.29.0...v4.29.1) (2021-08-09)
115
+
116
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
117
+
118
+
119
+
120
+
121
+
122
+ # [4.29.0](https://github.com/typescript-eslint/typescript-eslint/compare/v4.28.5...v4.29.0) (2021-08-02)
123
+
124
+
125
+ ### Bug Fixes
126
+
127
+ * **typescript-estree:** correct tty check ([#3635](https://github.com/typescript-eslint/typescript-eslint/issues/3635)) ([62bcc93](https://github.com/typescript-eslint/typescript-eslint/commit/62bcc937f08cd18296ffbe96a3551ec1fb87aecd))
128
+ * **typescript-estree:** ensure --fix works with singleRun mode ([#3655](https://github.com/typescript-eslint/typescript-eslint/issues/3655)) ([99eca0d](https://github.com/typescript-eslint/typescript-eslint/commit/99eca0d428187d4c29ded9ddd1b57b40ab463c01))
129
+
130
+
131
+ ### Features
132
+
133
+ * **ast-spec:** make `BaseNode` & `BaseToken` more type-safe ([#3560](https://github.com/typescript-eslint/typescript-eslint/issues/3560)) ([a6c5604](https://github.com/typescript-eslint/typescript-eslint/commit/a6c5604b65b6330d047aa016fc46b8a597a6ae58))
134
+ * **typescript-estree:** add support for custom module resolution ([#3516](https://github.com/typescript-eslint/typescript-eslint/issues/3516)) ([d48429d](https://github.com/typescript-eslint/typescript-eslint/commit/d48429d97326545bb727f88ce9056270b1599a31))
135
+
136
+
137
+
138
+
139
+
140
+ ## [4.28.5](https://github.com/typescript-eslint/typescript-eslint/compare/v4.28.4...v4.28.5) (2021-07-26)
141
+
142
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
143
+
144
+
145
+
146
+
147
+
148
+ ## [4.28.4](https://github.com/typescript-eslint/typescript-eslint/compare/v4.28.3...v4.28.4) (2021-07-19)
149
+
150
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
151
+
152
+
153
+
154
+
155
+
156
+ ## [4.28.3](https://github.com/typescript-eslint/typescript-eslint/compare/v4.28.2...v4.28.3) (2021-07-12)
157
+
158
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
159
+
160
+
161
+
162
+
163
+
164
+ ## [4.28.2](https://github.com/typescript-eslint/typescript-eslint/compare/v4.28.1...v4.28.2) (2021-07-05)
165
+
166
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
167
+
168
+
169
+
170
+
171
+
172
+ ## [4.28.1](https://github.com/typescript-eslint/typescript-eslint/compare/v4.28.0...v4.28.1) (2021-06-28)
173
+
174
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
175
+
176
+
177
+
178
+
179
+
180
+ # [4.28.0](https://github.com/typescript-eslint/typescript-eslint/compare/v4.27.0...v4.28.0) (2021-06-21)
181
+
182
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
183
+
184
+
185
+
186
+
187
+
188
+ # [4.27.0](https://github.com/typescript-eslint/typescript-eslint/compare/v4.26.1...v4.27.0) (2021-06-14)
189
+
190
+
191
+ ### Bug Fixes
192
+
193
+ * **typescript-estree:** allow providing more one than one existing program in config ([#3508](https://github.com/typescript-eslint/typescript-eslint/issues/3508)) ([4f1806e](https://github.com/typescript-eslint/typescript-eslint/commit/4f1806e548affb7265da360d1fc8d033e25de325))
194
+ * **typescript-estree:** support override modifier for parameter property ([#3485](https://github.com/typescript-eslint/typescript-eslint/issues/3485)) ([33b9f69](https://github.com/typescript-eslint/typescript-eslint/commit/33b9f69a681cd3219a2acca5b0b2fa67609f099e))
195
+
196
+
197
+ ### Features
198
+
199
+ * **ast-spec:** specify `PunctuatorToken`'s `value` type ([#3496](https://github.com/typescript-eslint/typescript-eslint/issues/3496)) ([fdb1d81](https://github.com/typescript-eslint/typescript-eslint/commit/fdb1d81f0fcf75a9216e6a90469f18c24c91f718))
200
+ * **typescript-estree:** add opt-in inference for single runs and create programs for projects up front ([#3512](https://github.com/typescript-eslint/typescript-eslint/issues/3512)) ([06c2d9b](https://github.com/typescript-eslint/typescript-eslint/commit/06c2d9ba5442330f56637ecb14fae7e41696699c))
201
+ * allow user to provide TS program instance in parser options ([#3484](https://github.com/typescript-eslint/typescript-eslint/issues/3484)) ([e855b18](https://github.com/typescript-eslint/typescript-eslint/commit/e855b18b8feee0edb5c617c11006861426a6f530))
202
+
203
+
204
+
205
+
206
+
207
+ ## [4.26.1](https://github.com/typescript-eslint/typescript-eslint/compare/v4.26.0...v4.26.1) (2021-06-07)
208
+
209
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
210
+
211
+
212
+
213
+
214
+
215
+ # [4.26.0](https://github.com/typescript-eslint/typescript-eslint/compare/v4.25.0...v4.26.0) (2021-05-31)
216
+
217
+
218
+ ### Bug Fixes
219
+
220
+ * generate library types for TypeScript v4.3 ([#3460](https://github.com/typescript-eslint/typescript-eslint/issues/3460)) ([ed4776a](https://github.com/typescript-eslint/typescript-eslint/commit/ed4776afa1374279027b9b7d82aa4b453b334998)), closes [#3449](https://github.com/typescript-eslint/typescript-eslint/issues/3449)
221
+
222
+
223
+
224
+
225
+
226
+ # [4.25.0](https://github.com/typescript-eslint/typescript-eslint/compare/v4.24.0...v4.25.0) (2021-05-24)
227
+
228
+
229
+ ### Features
230
+
231
+ * **typescript-estree:** [TS4.3] support overrides on class members ([#3429](https://github.com/typescript-eslint/typescript-eslint/issues/3429)) ([21d1b62](https://github.com/typescript-eslint/typescript-eslint/commit/21d1b62a0b84b502d2cf12674b3d141994a3ffd4))
232
+ * **typescript-estree:** add support for getter/setter signatures on types ([#3427](https://github.com/typescript-eslint/typescript-eslint/issues/3427)) ([b830b7f](https://github.com/typescript-eslint/typescript-eslint/commit/b830b7f4e8a99affc8af8b53cb83371ef81d7032)), closes [#3272](https://github.com/typescript-eslint/typescript-eslint/issues/3272) [#3272](https://github.com/typescript-eslint/typescript-eslint/issues/3272)
233
+
234
+
235
+
236
+
237
+
238
+ # [4.24.0](https://github.com/typescript-eslint/typescript-eslint/compare/v4.23.0...v4.24.0) (2021-05-17)
239
+
240
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
241
+
242
+
243
+
244
+
245
+
246
+ # [4.23.0](https://github.com/typescript-eslint/typescript-eslint/compare/v4.22.1...v4.23.0) (2021-05-10)
247
+
248
+
249
+ ### Features
250
+
251
+ * refactor to split AST specification out as its own module ([#2911](https://github.com/typescript-eslint/typescript-eslint/issues/2911)) ([25ea953](https://github.com/typescript-eslint/typescript-eslint/commit/25ea953cc60b118bd385c71e0a9b61c286c26fcf))
252
+
253
+
254
+
255
+
256
+
257
+ ## [4.22.1](https://github.com/typescript-eslint/typescript-eslint/compare/v4.22.0...v4.22.1) (2021-05-04)
258
+
259
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
260
+
261
+
262
+
263
+
264
+
265
+ # [4.22.0](https://github.com/typescript-eslint/typescript-eslint/compare/v4.21.0...v4.22.0) (2021-04-12)
266
+
267
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
268
+
269
+
270
+
271
+
272
+
273
+ # [4.21.0](https://github.com/typescript-eslint/typescript-eslint/compare/v4.20.0...v4.21.0) (2021-04-05)
274
+
275
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
276
+
277
+
278
+
279
+
280
+
281
+ # [4.20.0](https://github.com/typescript-eslint/typescript-eslint/compare/v4.19.0...v4.20.0) (2021-03-29)
282
+
283
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
284
+
285
+
286
+
287
+
288
+
289
+ # [4.19.0](https://github.com/typescript-eslint/typescript-eslint/compare/v4.18.0...v4.19.0) (2021-03-22)
290
+
291
+
292
+ ### Bug Fixes
293
+
294
+ * **typescript-estree:** [ts 4.2] add support for import type equal declaration ([#3189](https://github.com/typescript-eslint/typescript-eslint/issues/3189)) ([6a25faf](https://github.com/typescript-eslint/typescript-eslint/commit/6a25faf5cfa4d21a7546d9866819f4e017308fb2))
295
+
296
+
297
+
298
+
299
+
300
+ # [4.18.0](https://github.com/typescript-eslint/typescript-eslint/compare/v4.17.0...v4.18.0) (2021-03-15)
301
+
302
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
303
+
304
+
305
+
306
+
307
+
308
+ # [4.17.0](https://github.com/typescript-eslint/typescript-eslint/compare/v4.16.1...v4.17.0) (2021-03-08)
309
+
310
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
311
+
312
+
313
+
314
+
315
+
316
+ ## [4.16.1](https://github.com/typescript-eslint/typescript-eslint/compare/v4.16.0...v4.16.1) (2021-03-01)
317
+
318
+
319
+ ### Bug Fixes
320
+
321
+ * **typescript-estree:** update TS version range ([#3127](https://github.com/typescript-eslint/typescript-eslint/issues/3127)) ([0473674](https://github.com/typescript-eslint/typescript-eslint/commit/0473674c58df5039a2de3c63ad7494fc6be7487e))
322
+
323
+
324
+
325
+
326
+
327
+ # [4.16.0](https://github.com/typescript-eslint/typescript-eslint/compare/v4.15.2...v4.16.0) (2021-03-01)
328
+
329
+
330
+ ### Features
331
+
332
+ * TypeScript 4.2 syntax support ([#3112](https://github.com/typescript-eslint/typescript-eslint/issues/3112)) ([2ebfb21](https://github.com/typescript-eslint/typescript-eslint/commit/2ebfb21ba6c88c793cfbd0e231e5803b2381694c))
333
+ * **typescript-estree:** throw custom error instead of plain object ([#3011](https://github.com/typescript-eslint/typescript-eslint/issues/3011)) ([ae14bf5](https://github.com/typescript-eslint/typescript-eslint/commit/ae14bf55fe31b0eb982ba17333e4aac550d10342))
334
+
335
+
336
+
337
+
338
+
339
+ ## [4.15.2](https://github.com/typescript-eslint/typescript-eslint/compare/v4.15.1...v4.15.2) (2021-02-22)
340
+
341
+
342
+ ### Bug Fixes
343
+
344
+ * **typescript-estree:** correct issues in AST definition ([#3083](https://github.com/typescript-eslint/typescript-eslint/issues/3083)) ([509a117](https://github.com/typescript-eslint/typescript-eslint/commit/509a11749f85400a01e9fecfecd12871ce562d3d))
345
+ * add missing intrinsic keyword node to AST ([#3081](https://github.com/typescript-eslint/typescript-eslint/issues/3081)) ([409bf0b](https://github.com/typescript-eslint/typescript-eslint/commit/409bf0bb3e2ac4d8782408d436ebdefb42dba38b))
346
+ * correct test names on windows for semantic-diagnostics-enabled ([#3060](https://github.com/typescript-eslint/typescript-eslint/issues/3060)) ([885780d](https://github.com/typescript-eslint/typescript-eslint/commit/885780d4a2b07e418256b7323d76b18453c14a50))
347
+
348
+
349
+
350
+
351
+
352
+ ## [4.15.1](https://github.com/typescript-eslint/typescript-eslint/compare/v4.15.0...v4.15.1) (2021-02-15)
353
+
354
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
355
+
356
+
357
+
358
+
359
+
360
+ # [4.15.0](https://github.com/typescript-eslint/typescript-eslint/compare/v4.14.2...v4.15.0) (2021-02-08)
361
+
362
+
363
+ ### Features
364
+
365
+ * **typescript-estree:** improve logic used to escape string literals in jsx ([#2995](https://github.com/typescript-eslint/typescript-eslint/issues/2995)) ([3cb3aad](https://github.com/typescript-eslint/typescript-eslint/commit/3cb3aade2864bab15ed1ff8d7cd32766aa57152f))
366
+
367
+
368
+
369
+
370
+
371
+ ## [4.14.2](https://github.com/typescript-eslint/typescript-eslint/compare/v4.14.1...v4.14.2) (2021-02-01)
372
+
373
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
374
+
375
+
376
+
377
+
378
+
379
+ ## [4.14.1](https://github.com/typescript-eslint/typescript-eslint/compare/v4.14.0...v4.14.1) (2021-01-25)
380
+
381
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
382
+
383
+
384
+
385
+
386
+
387
+ # [4.14.0](https://github.com/typescript-eslint/typescript-eslint/compare/v4.13.0...v4.14.0) (2021-01-18)
388
+
389
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
390
+
391
+
392
+
393
+
394
+
395
+ # [4.13.0](https://github.com/typescript-eslint/typescript-eslint/compare/v4.12.0...v4.13.0) (2021-01-11)
396
+
397
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
398
+
399
+
400
+
401
+
402
+
403
+ # [4.12.0](https://github.com/typescript-eslint/typescript-eslint/compare/v4.11.1...v4.12.0) (2021-01-04)
404
+
405
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
406
+
407
+
408
+
409
+
410
+
411
+ ## [4.11.1](https://github.com/typescript-eslint/typescript-eslint/compare/v4.11.0...v4.11.1) (2020-12-28)
412
+
413
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
414
+
415
+
416
+
417
+
418
+
419
+ # [4.11.0](https://github.com/typescript-eslint/typescript-eslint/compare/v4.10.0...v4.11.0) (2020-12-21)
420
+
421
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
422
+
423
+
424
+
425
+
426
+
427
+ # [4.10.0](https://github.com/typescript-eslint/typescript-eslint/compare/v4.9.1...v4.10.0) (2020-12-14)
428
+
429
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
430
+
431
+
432
+
433
+
434
+
435
+ ## [4.9.1](https://github.com/typescript-eslint/typescript-eslint/compare/v4.9.0...v4.9.1) (2020-12-07)
436
+
437
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
438
+
439
+
440
+
441
+
442
+
443
+ # [4.9.0](https://github.com/typescript-eslint/typescript-eslint/compare/v4.8.2...v4.9.0) (2020-11-30)
444
+
445
+
446
+ ### Bug Fixes
447
+
448
+ * **typescript-estree:** add default value for `parserOptions.projectFolderIgnoreList` and deduplicate resolved projects ([#2819](https://github.com/typescript-eslint/typescript-eslint/issues/2819)) ([bf904ec](https://github.com/typescript-eslint/typescript-eslint/commit/bf904ec72db57174fec531f61e9427230662553e)), closes [#2418](https://github.com/typescript-eslint/typescript-eslint/issues/2418) [#2814](https://github.com/typescript-eslint/typescript-eslint/issues/2814)
449
+
450
+
451
+
452
+
453
+
454
+ ## [4.8.2](https://github.com/typescript-eslint/typescript-eslint/compare/v4.8.1...v4.8.2) (2020-11-23)
455
+
456
+
457
+ ### Bug Fixes
458
+
459
+ * **typescript-estree:** fix type-only regression for consumers not yet on TS 4.1 ([#2789](https://github.com/typescript-eslint/typescript-eslint/issues/2789)) ([50a46c6](https://github.com/typescript-eslint/typescript-eslint/commit/50a46c60fb81d8434aa4268a13d17d8fcf499e21))
460
+
461
+
462
+
463
+
464
+
465
+ ## [4.8.1](https://github.com/typescript-eslint/typescript-eslint/compare/v4.8.0...v4.8.1) (2020-11-17)
466
+
467
+
468
+ ### Bug Fixes
469
+
470
+ * **typescript-estree:** parseWithNodeMaps returning empty maps ([#2773](https://github.com/typescript-eslint/typescript-eslint/issues/2773)) ([3e4a0ed](https://github.com/typescript-eslint/typescript-eslint/commit/3e4a0ed0d615fd22a2f28c7c8af6179673e195f8))
471
+
472
+
473
+
474
+
475
+
476
+ # [4.8.0](https://github.com/typescript-eslint/typescript-eslint/compare/v4.7.0...v4.8.0) (2020-11-16)
477
+
478
+
479
+ ### Features
480
+
481
+ * **typescript-estree:** add `parseWithNodeMaps` API ([#2760](https://github.com/typescript-eslint/typescript-eslint/issues/2760)) ([9441d50](https://github.com/typescript-eslint/typescript-eslint/commit/9441d5030211f1c32f5ae8e61d5565cab8bb6823)), closes [#1852](https://github.com/typescript-eslint/typescript-eslint/issues/1852)
482
+
483
+
484
+
485
+
486
+
487
+ # [4.7.0](https://github.com/typescript-eslint/typescript-eslint/compare/v4.6.1...v4.7.0) (2020-11-09)
488
+
489
+
490
+ ### Features
491
+
492
+ * support TS4.1 features ([#2748](https://github.com/typescript-eslint/typescript-eslint/issues/2748)) ([2be354b](https://github.com/typescript-eslint/typescript-eslint/commit/2be354bb15f9013a2da1b13a0c0836e9ef057e16)), closes [#2583](https://github.com/typescript-eslint/typescript-eslint/issues/2583)
493
+
494
+
495
+
496
+
497
+
498
+ ## [4.6.1](https://github.com/typescript-eslint/typescript-eslint/compare/v4.6.0...v4.6.1) (2020-11-02)
499
+
500
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
501
+
502
+
503
+
504
+
505
+
506
+ # [4.6.0](https://github.com/typescript-eslint/typescript-eslint/compare/v4.5.0...v4.6.0) (2020-10-26)
507
+
508
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
509
+
510
+
511
+
512
+
513
+
514
+ # [4.5.0](https://github.com/typescript-eslint/typescript-eslint/compare/v4.4.1...v4.5.0) (2020-10-19)
515
+
516
+
517
+ ### Features
518
+
519
+ * **typescript-estree:** add flag EXPERIMENTAL_useSourceOfProjectReferenceRedirect ([#2669](https://github.com/typescript-eslint/typescript-eslint/issues/2669)) ([90a5878](https://github.com/typescript-eslint/typescript-eslint/commit/90a587845088da1b205e4d7d77dbc3f9447b1c5a))
520
+
521
+
522
+
523
+
524
+
525
+ ## [4.4.1](https://github.com/typescript-eslint/typescript-eslint/compare/v4.4.0...v4.4.1) (2020-10-12)
526
+
527
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
528
+
529
+
530
+
531
+
532
+
533
+ # [4.4.0](https://github.com/typescript-eslint/typescript-eslint/compare/v4.3.0...v4.4.0) (2020-10-05)
534
+
535
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
536
+
537
+
538
+
539
+
540
+
541
+ # [4.3.0](https://github.com/typescript-eslint/typescript-eslint/compare/v4.2.0...v4.3.0) (2020-09-28)
542
+
543
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
544
+
545
+
546
+
547
+
548
+
549
+ # [4.2.0](https://github.com/typescript-eslint/typescript-eslint/compare/v4.1.1...v4.2.0) (2020-09-21)
550
+
551
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
552
+
553
+
554
+
555
+
556
+
557
+ ## [4.1.1](https://github.com/typescript-eslint/typescript-eslint/compare/v4.1.0...v4.1.1) (2020-09-14)
558
+
559
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
560
+
561
+
562
+
563
+
564
+
565
+ # [4.1.0](https://github.com/typescript-eslint/typescript-eslint/compare/v4.0.1...v4.1.0) (2020-09-07)
566
+
567
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
568
+
569
+
570
+
571
+
572
+
573
+ ## [4.0.1](https://github.com/typescript-eslint/typescript-eslint/compare/v4.0.0...v4.0.1) (2020-08-31)
574
+
575
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
576
+
577
+
578
+
579
+
580
+
581
+ # [4.0.0](https://github.com/typescript-eslint/typescript-eslint/compare/v3.10.1...v4.0.0) (2020-08-31)
582
+
583
+
584
+ ### Bug Fixes
585
+
586
+ * correct decorator traversal for AssignmentPattern ([#2375](https://github.com/typescript-eslint/typescript-eslint/issues/2375)) ([d738fa4](https://github.com/typescript-eslint/typescript-eslint/commit/d738fa4eff0a5c4cfc9b30b1c0502f8d1e78d7b6))
587
+ * **typescript-estree:** correct ChainExpression interaction with parentheses and non-nulls ([#2380](https://github.com/typescript-eslint/typescript-eslint/issues/2380)) ([762bc99](https://github.com/typescript-eslint/typescript-eslint/commit/762bc99584ede4d0b8099a743991e957aec86aa8))
588
+
589
+
590
+ ### Features
591
+
592
+ * support ESTree optional chaining representation ([#2308](https://github.com/typescript-eslint/typescript-eslint/issues/2308)) ([e9d2ab6](https://github.com/typescript-eslint/typescript-eslint/commit/e9d2ab638b6767700b52797e74b814ea059beaae))
593
+ * **typescript-estree:** switch to globby ([#2418](https://github.com/typescript-eslint/typescript-eslint/issues/2418)) ([3a7ec9b](https://github.com/typescript-eslint/typescript-eslint/commit/3a7ec9bcf1873a99c6da2f19ade8ab4763b4793c)), closes [#2398](https://github.com/typescript-eslint/typescript-eslint/issues/2398)
594
+
595
+
596
+ ### BREAKING CHANGES
597
+
598
+ * **typescript-estree:** - removes the ability to supply a `RegExp` to `projectFolderIgnoreList`, and changes the meaning of the string value from a regex to a glob.
599
+ * - Removed decorators property from several Nodes that could never semantically have them (FunctionDeclaration, TSEnumDeclaration, and TSInterfaceDeclaration)
600
+ - Removed AST_NODE_TYPES.Import. This is a minor breaking change as the node type that used this was removed ages ago.
601
+
602
+
603
+
604
+
605
+
606
+ ## [3.10.1](https://github.com/typescript-eslint/typescript-eslint/compare/v3.10.0...v3.10.1) (2020-08-25)
607
+
608
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
609
+
610
+
611
+
612
+
613
+
614
+ # [3.10.0](https://github.com/typescript-eslint/typescript-eslint/compare/v3.9.1...v3.10.0) (2020-08-24)
615
+
616
+
617
+ ### Bug Fixes
618
+
619
+ * **typescript-estree:** ts.NamedTupleMember workaround for <TS4.0 ([#2405](https://github.com/typescript-eslint/typescript-eslint/issues/2405)) ([b62331a](https://github.com/typescript-eslint/typescript-eslint/commit/b62331ad02dcff3236e18f10eb92d59e7371d4c3))
620
+
621
+
622
+ ### Features
623
+
624
+ * **typescript-estree:** update allowed TS version range ([#2419](https://github.com/typescript-eslint/typescript-eslint/issues/2419)) ([e6be621](https://github.com/typescript-eslint/typescript-eslint/commit/e6be62128b3a98541fe590512892c4b501914e46))
625
+
626
+
627
+
628
+
629
+
630
+ ## [3.9.1](https://github.com/typescript-eslint/typescript-eslint/compare/v3.9.0...v3.9.1) (2020-08-17)
631
+
632
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
633
+
634
+
635
+
636
+
637
+
638
+ # [3.9.0](https://github.com/typescript-eslint/typescript-eslint/compare/v3.8.0...v3.9.0) (2020-08-10)
639
+
640
+
641
+ ### Features
642
+
643
+ * **typescript-estree:** support TSv4 labelled tuple members ([#2378](https://github.com/typescript-eslint/typescript-eslint/issues/2378)) ([00d84ff](https://github.com/typescript-eslint/typescript-eslint/commit/00d84ffbcbe9d0ec98bdb2f2ce59959a27ce4dbe))
644
+
645
+
646
+
647
+
648
+
649
+ # [3.8.0](https://github.com/typescript-eslint/typescript-eslint/compare/v3.7.1...v3.8.0) (2020-08-03)
650
+
651
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
652
+
653
+
654
+
655
+
656
+
657
+ ## [3.7.1](https://github.com/typescript-eslint/typescript-eslint/compare/v3.7.0...v3.7.1) (2020-07-27)
658
+
659
+
660
+ ### Bug Fixes
661
+
662
+ * **typescript-estree:** correct AST regression introduced by TS4.0 upgrade ([#2316](https://github.com/typescript-eslint/typescript-eslint/issues/2316)) ([d7fefba](https://github.com/typescript-eslint/typescript-eslint/commit/d7fefba3741a526ff2b58dd713995c3ee5603962))
663
+
664
+
665
+
666
+
667
+
668
+ # [3.7.0](https://github.com/typescript-eslint/typescript-eslint/compare/v3.6.1...v3.7.0) (2020-07-20)
669
+
670
+
671
+ ### Features
672
+
673
+ * **typescript-estree:** support short-circuiting assignment operators ([#2307](https://github.com/typescript-eslint/typescript-eslint/issues/2307)) ([2c90d9f](https://github.com/typescript-eslint/typescript-eslint/commit/2c90d9fa3aa5ebd7db697dddb7762bca2dd0e06b))
674
+ * **typescript-estree:** support type annotations on catch clauses ([#2306](https://github.com/typescript-eslint/typescript-eslint/issues/2306)) ([b5afe9c](https://github.com/typescript-eslint/typescript-eslint/commit/b5afe9c560b9f38c8dffc312a600db30944129c8))
675
+
676
+
677
+
678
+
679
+
680
+ ## [3.6.1](https://github.com/typescript-eslint/typescript-eslint/compare/v3.6.0...v3.6.1) (2020-07-13)
681
+
682
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
683
+
684
+
685
+
686
+
687
+
688
+ # [3.6.0](https://github.com/typescript-eslint/typescript-eslint/compare/v3.5.0...v3.6.0) (2020-07-06)
689
+
690
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
691
+
692
+
693
+
694
+
695
+
696
+ # [3.5.0](https://github.com/typescript-eslint/typescript-eslint/compare/v3.4.0...v3.5.0) (2020-06-29)
697
+
698
+
699
+ ### Bug Fixes
700
+
701
+ * **typescript-estree:** forward compatibility for new compound assignment operators ([#2253](https://github.com/typescript-eslint/typescript-eslint/issues/2253)) ([ba41680](https://github.com/typescript-eslint/typescript-eslint/commit/ba41680f2a25b1aa4d05c2d4b132ac73a6faefbd))
702
+
703
+
704
+ ### Features
705
+
706
+ * add package scope-manager ([#1939](https://github.com/typescript-eslint/typescript-eslint/issues/1939)) ([682eb7e](https://github.com/typescript-eslint/typescript-eslint/commit/682eb7e009c3f22a542882dfd3602196a60d2a1e))
707
+ * split types into their own package ([#2229](https://github.com/typescript-eslint/typescript-eslint/issues/2229)) ([5f45918](https://github.com/typescript-eslint/typescript-eslint/commit/5f4591886f3438329fbf2229b03ac66174334a24))
708
+ * split visitor keys into their own package ([#2230](https://github.com/typescript-eslint/typescript-eslint/issues/2230)) ([689dae3](https://github.com/typescript-eslint/typescript-eslint/commit/689dae37392d527c64ae83db2a4c3e6b7fecece7))
709
+
710
+
711
+
712
+
713
+
714
+ # [3.4.0](https://github.com/typescript-eslint/typescript-eslint/compare/v3.3.0...v3.4.0) (2020-06-22)
715
+
716
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
717
+
718
+
719
+
720
+
721
+
722
+ # [3.3.0](https://github.com/typescript-eslint/typescript-eslint/compare/v3.2.0...v3.3.0) (2020-06-15)
723
+
724
+
725
+ ### Bug Fixes
726
+
727
+ * **typescript-estree:** handle TS4.0 breaking change in TupleType ([#2197](https://github.com/typescript-eslint/typescript-eslint/issues/2197)) ([5d68129](https://github.com/typescript-eslint/typescript-eslint/commit/5d6812914831a386997b453b4db1e3283e26005d))
728
+
729
+
730
+
731
+
732
+
733
+ # [3.2.0](https://github.com/typescript-eslint/typescript-eslint/compare/v3.1.0...v3.2.0) (2020-06-08)
734
+
735
+
736
+ ### Bug Fixes
737
+
738
+ * **eslint-plugin:** [prefer-optional-chain] handling first member expression ([#2156](https://github.com/typescript-eslint/typescript-eslint/issues/2156)) ([de18660](https://github.com/typescript-eslint/typescript-eslint/commit/de18660a8cf8f7033798646d8c5b0938d1accb12))
739
+
740
+
741
+
742
+
743
+
744
+ # [3.1.0](https://github.com/typescript-eslint/typescript-eslint/compare/v3.0.2...v3.1.0) (2020-06-01)
745
+
746
+
747
+ ### Bug Fixes
748
+
749
+ * **eslint-plugin:** [no-unused-expressions] ignore import expressions ([#2130](https://github.com/typescript-eslint/typescript-eslint/issues/2130)) ([e383691](https://github.com/typescript-eslint/typescript-eslint/commit/e3836910efdafd9edf04daed149c9e839c08047e))
750
+ * **experimental-utils:** downlevel type declarations for versions older than 3.8 ([#2133](https://github.com/typescript-eslint/typescript-eslint/issues/2133)) ([7925823](https://github.com/typescript-eslint/typescript-eslint/commit/792582326a8065270b69a0ffcaad5a7b4b103ff3))
751
+
752
+
753
+
754
+
755
+
756
+ ## [3.0.2](https://github.com/typescript-eslint/typescript-eslint/compare/v3.0.1...v3.0.2) (2020-05-27)
757
+
758
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
759
+
760
+
761
+
762
+
763
+
764
+ ## [3.0.1](https://github.com/typescript-eslint/typescript-eslint/compare/v3.0.0...v3.0.1) (2020-05-25)
765
+
766
+
767
+ ### Bug Fixes
768
+
769
+ * **typescript-estree:** handle `BigInt` with `_` numeric separator ([#2067](https://github.com/typescript-eslint/typescript-eslint/issues/2067)) ([66f1627](https://github.com/typescript-eslint/typescript-eslint/commit/66f1627b11a566d5b925a577e800f99d5c808be2))
770
+ * **typescript-estree:** mark TS 3.8 and 3.9 as "supported" ([#2057](https://github.com/typescript-eslint/typescript-eslint/issues/2057)) ([5eedbff](https://github.com/typescript-eslint/typescript-eslint/commit/5eedbff01178ea33b98ab22e556df4c1a195f839)), closes [#1436](https://github.com/typescript-eslint/typescript-eslint/issues/1436) [#1436](https://github.com/typescript-eslint/typescript-eslint/issues/1436)
771
+
772
+
773
+
774
+
775
+
776
+ # [3.0.0](https://github.com/typescript-eslint/typescript-eslint/compare/v2.34.0...v3.0.0) (2020-05-21)
777
+
778
+ ## [Please see the release notes for v3.0.0](https://github.com/typescript-eslint/typescript-eslint/releases/tag/v3.0.0)
779
+
780
+ ### Bug Fixes
781
+
782
+ * **typescript-estree:** remove now defunct `Import` node type ([f199cbd](https://github.com/typescript-eslint/typescript-eslint/commit/f199cbdbbd892b5ba03bfff66f463f3d9c92ee9b))
783
+ * **typescript-estree:** use `TSEmptyBodyFunctionExpression` for body-less nodes ([#1289](https://github.com/typescript-eslint/typescript-eslint/issues/1289)) ([82e7163](https://github.com/typescript-eslint/typescript-eslint/commit/82e7163214b56ccde93ba97807b161669a50a60b))
784
+
785
+
786
+ ### Features
787
+
788
+ * add index files to parser and typescript-estree ([3dfc46d](https://github.com/typescript-eslint/typescript-eslint/commit/3dfc46dccbbd28eed2d74c7b6cacddf1a0848598))
789
+ * bump minimum required TS version ([#2004](https://github.com/typescript-eslint/typescript-eslint/issues/2004)) ([7ad4d7c](https://github.com/typescript-eslint/typescript-eslint/commit/7ad4d7c2db088b6f779b9d883a4acad13eee3775))
790
+ * **eslint-plugin:** [ban-types] rework default options ([#848](https://github.com/typescript-eslint/typescript-eslint/issues/848)) ([8e31d5d](https://github.com/typescript-eslint/typescript-eslint/commit/8e31d5dbe9fe5227fdbefcecfd50ce5dd51360c3))
791
+ * **typescript-estree:** align nodes with estree 2020 ([#1389](https://github.com/typescript-eslint/typescript-eslint/issues/1389)) ([aff5b62](https://github.com/typescript-eslint/typescript-eslint/commit/aff5b62044f9b93f2087a1d261e9be3f8d6fd54d))
792
+ * **typescript-estree:** align optional fields ([#1429](https://github.com/typescript-eslint/typescript-eslint/issues/1429)) ([0e0010f](https://github.com/typescript-eslint/typescript-eslint/commit/0e0010f82952f9beeeb84136eea00cc5eecc9db6))
793
+ * drop support for node v8 ([#1997](https://github.com/typescript-eslint/typescript-eslint/issues/1997)) ([b6c3b7b](https://github.com/typescript-eslint/typescript-eslint/commit/b6c3b7b84b8d199fa75a46432febd4a364a63217))
794
+ * **typescript-estree:** always return parserServices ([#716](https://github.com/typescript-eslint/typescript-eslint/issues/716)) ([5b23443](https://github.com/typescript-eslint/typescript-eslint/commit/5b23443c48f3f62424db3e742243f3568080b946))
795
+ * **typescript-estree:** handle 3.9's non-null assertion changes ([#2036](https://github.com/typescript-eslint/typescript-eslint/issues/2036)) ([06bec63](https://github.com/typescript-eslint/typescript-eslint/commit/06bec63c56536db070608ab136d2ad57083f0c6a))
796
+
797
+
798
+
799
+
800
+
801
+ # [2.34.0](https://github.com/typescript-eslint/typescript-eslint/compare/v2.33.0...v2.34.0) (2020-05-18)
802
+
803
+
804
+ ### Bug Fixes
805
+
806
+ * **typescript-estree:** fix handling of range/loc removal ([#2028](https://github.com/typescript-eslint/typescript-eslint/issues/2028)) ([ce344d9](https://github.com/typescript-eslint/typescript-eslint/commit/ce344d90e7c78b0c4b4b823494a3e78190f45c64))
807
+
808
+
809
+
810
+
811
+
812
+ # [2.33.0](https://github.com/typescript-eslint/typescript-eslint/compare/v2.32.0...v2.33.0) (2020-05-12)
813
+
814
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
815
+
816
+
817
+
818
+
819
+
820
+ # [2.32.0](https://github.com/typescript-eslint/typescript-eslint/compare/v2.31.0...v2.32.0) (2020-05-11)
821
+
822
+
823
+ ### Features
824
+
825
+ * bump dependencies and align AST ([#2007](https://github.com/typescript-eslint/typescript-eslint/issues/2007)) ([18668b7](https://github.com/typescript-eslint/typescript-eslint/commit/18668b78fd7d1e5281af7fc26c76e0ca53297f69))
826
+
827
+
828
+
829
+
830
+
831
+ # [2.31.0](https://github.com/typescript-eslint/typescript-eslint/compare/v2.30.0...v2.31.0) (2020-05-04)
832
+
833
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
834
+
835
+
836
+
837
+
838
+
839
+ # [2.30.0](https://github.com/typescript-eslint/typescript-eslint/compare/v2.29.0...v2.30.0) (2020-04-27)
840
+
841
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
842
+
843
+
844
+
845
+
846
+
847
+ # [2.29.0](https://github.com/typescript-eslint/typescript-eslint/compare/v2.28.0...v2.29.0) (2020-04-20)
848
+
849
+
850
+ ### Features
851
+
852
+ * **eslint-plugin:** [no-floating-promise] add option to ignore IIFEs ([#1799](https://github.com/typescript-eslint/typescript-eslint/issues/1799)) ([cea51bf](https://github.com/typescript-eslint/typescript-eslint/commit/cea51bf130d6d3c2935f5e2dcc468196f2ad9d00))
853
+
854
+
855
+
856
+
857
+
858
+ # [2.28.0](https://github.com/typescript-eslint/typescript-eslint/compare/v2.27.0...v2.28.0) (2020-04-13)
859
+
860
+
861
+ ### Features
862
+
863
+ * **eslint-plugin:** add rule `prefer-ts-expect-error` ([#1705](https://github.com/typescript-eslint/typescript-eslint/issues/1705)) ([7021f21](https://github.com/typescript-eslint/typescript-eslint/commit/7021f2151a25db2a8edf17e06cd6f21e90761ec8))
864
+ * **eslint-plugin:** add rule no-unsafe-assignment ([#1694](https://github.com/typescript-eslint/typescript-eslint/issues/1694)) ([a49b860](https://github.com/typescript-eslint/typescript-eslint/commit/a49b860cbbb2c7d718b99f561e2fb6eaadf16f17))
865
+
866
+
867
+
868
+
869
+
870
+ # [2.27.0](https://github.com/typescript-eslint/typescript-eslint/compare/v2.26.0...v2.27.0) (2020-04-06)
871
+
872
+
873
+ ### Bug Fixes
874
+
875
+ * **typescript-estree:** add support for TS3.9 extra file extensions ([#1833](https://github.com/typescript-eslint/typescript-eslint/issues/1833)) ([1f0ff41](https://github.com/typescript-eslint/typescript-eslint/commit/1f0ff41aa1bc3b7c5330b2f5fe22e24bf578a6b2))
876
+
877
+
878
+ ### Features
879
+
880
+ * **eslint-plugin:** sort members alphabetically ([#263](https://github.com/typescript-eslint/typescript-eslint/issues/263)) ([485e902](https://github.com/typescript-eslint/typescript-eslint/commit/485e90213a0f8baac0587f7d56925448883fc5bd))
881
+
882
+
883
+
884
+
885
+
886
+ # [2.26.0](https://github.com/typescript-eslint/typescript-eslint/compare/v2.25.0...v2.26.0) (2020-03-30)
887
+
888
+
889
+ ### Features
890
+
891
+ * **typescript-estree:** add option to ignore certain folders from glob resolution ([#1802](https://github.com/typescript-eslint/typescript-eslint/issues/1802)) ([1e29e69](https://github.com/typescript-eslint/typescript-eslint/commit/1e29e69b289d61107a7de67592beae331ba50222))
892
+
893
+
894
+
895
+
896
+
897
+ # [2.25.0](https://github.com/typescript-eslint/typescript-eslint/compare/v2.24.0...v2.25.0) (2020-03-23)
898
+
899
+
900
+ ### Bug Fixes
901
+
902
+ * **typescript-estree:** export * regression from 133f622f ([#1751](https://github.com/typescript-eslint/typescript-eslint/issues/1751)) ([09d8afc](https://github.com/typescript-eslint/typescript-eslint/commit/09d8afca684635b5ac604bc1794240484a70ce91))
903
+
904
+
905
+
906
+
907
+
908
+ # [2.24.0](https://github.com/typescript-eslint/typescript-eslint/compare/v2.23.0...v2.24.0) (2020-03-16)
909
+
910
+
911
+ ### Bug Fixes
912
+
913
+ * **typescript-estree:** unnecessary program updates by removing timeout methods ([#1693](https://github.com/typescript-eslint/typescript-eslint/issues/1693)) ([2ccd66b](https://github.com/typescript-eslint/typescript-eslint/commit/2ccd66b920816d54cc1a639059f60410df665900))
914
+
915
+
916
+ ### Features
917
+
918
+ * **typescript-estree:** support 3.8 `export * as ns` ([#1698](https://github.com/typescript-eslint/typescript-eslint/issues/1698)) ([133f622](https://github.com/typescript-eslint/typescript-eslint/commit/133f622f38a286eac45288a9789d2ee529d5e582))
919
+
920
+
921
+
922
+
923
+
924
+ # [2.23.0](https://github.com/typescript-eslint/typescript-eslint/compare/v2.22.0...v2.23.0) (2020-03-09)
925
+
926
+
927
+ ### Features
928
+
929
+ * **typescript-estree:** support 3.8 import/export type ([#1697](https://github.com/typescript-eslint/typescript-eslint/issues/1697)) ([625d603](https://github.com/typescript-eslint/typescript-eslint/commit/625d603f94bf0521f834313bf31c734ce4948b7a))
930
+
931
+
932
+
933
+
934
+
935
+ # [2.22.0](https://github.com/typescript-eslint/typescript-eslint/compare/v2.21.0...v2.22.0) (2020-03-02)
936
+
937
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
938
+
939
+
940
+
941
+
942
+
943
+ # [2.21.0](https://github.com/typescript-eslint/typescript-eslint/compare/v2.20.0...v2.21.0) (2020-02-24)
944
+
945
+
946
+ ### Bug Fixes
947
+
948
+ * **typescript-estree:** process.stdout can be undefined ([#1619](https://github.com/typescript-eslint/typescript-eslint/issues/1619)) ([0d8e87e](https://github.com/typescript-eslint/typescript-eslint/commit/0d8e87e09704588273bc94a740279b3e8af7474f))
949
+
950
+
951
+
952
+
953
+
954
+ # [2.20.0](https://github.com/typescript-eslint/typescript-eslint/compare/v2.19.2...v2.20.0) (2020-02-17)
955
+
956
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
957
+
958
+
959
+
960
+
961
+
962
+ ## [2.19.2](https://github.com/typescript-eslint/typescript-eslint/compare/v2.19.1...v2.19.2) (2020-02-10)
963
+
964
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
965
+
966
+
967
+
968
+
969
+
970
+ ## [2.19.1](https://github.com/typescript-eslint/typescript-eslint/compare/v2.19.0...v2.19.1) (2020-02-10)
971
+
972
+
973
+ ### Bug Fixes
974
+
975
+ * **typescript-estree:** ts returning wrong file with project references ([#1575](https://github.com/typescript-eslint/typescript-eslint/issues/1575)) ([4c12dac](https://github.com/typescript-eslint/typescript-eslint/commit/4c12dac075f774801a145cd29c4c7eff64f98fdc))
976
+
977
+
978
+
979
+
980
+
981
+ # [2.19.0](https://github.com/typescript-eslint/typescript-eslint/compare/v2.18.0...v2.19.0) (2020-02-03)
982
+
983
+
984
+ ### Bug Fixes
985
+
986
+ * **typescript-estree:** fix regression introduced in [#1525](https://github.com/typescript-eslint/typescript-eslint/issues/1525) ([#1543](https://github.com/typescript-eslint/typescript-eslint/issues/1543)) ([bec4572](https://github.com/typescript-eslint/typescript-eslint/commit/bec45722dfed8aeb49189d151252b83d4a34239c))
987
+ * **typescript-estree:** persisted parse and module none ([#1516](https://github.com/typescript-eslint/typescript-eslint/issues/1516)) ([7c70323](https://github.com/typescript-eslint/typescript-eslint/commit/7c7032322f55d9492e21d3bfa5da16da1f05cbce))
988
+
989
+
990
+
991
+
992
+
993
+ # [2.18.0](https://github.com/typescript-eslint/typescript-eslint/compare/v2.17.0...v2.18.0) (2020-01-27)
994
+
995
+
996
+ ### Bug Fixes
997
+
998
+ * improve token types and add missing type guards ([#1497](https://github.com/typescript-eslint/typescript-eslint/issues/1497)) ([ce41d7d](https://github.com/typescript-eslint/typescript-eslint/commit/ce41d7de33bcb7ccf96c03ac1438304c5a49ff54))
999
+ * **typescript-estree:** error on unexpected jsdoc nodes ([#1525](https://github.com/typescript-eslint/typescript-eslint/issues/1525)) ([c8dfac3](https://github.com/typescript-eslint/typescript-eslint/commit/c8dfac3d2f066e50fa9d2b5a86beffdaafddb643))
1000
+ * **typescript-estree:** fix identifier tokens typed as `Keyword` ([#1487](https://github.com/typescript-eslint/typescript-eslint/issues/1487)) ([77a1caa](https://github.com/typescript-eslint/typescript-eslint/commit/77a1caa562638645b4717449800e410107d512c8))
1001
+
1002
+
1003
+ ### Features
1004
+
1005
+ * **eslint-plugin:** add new rule prefer-as-const ([#1431](https://github.com/typescript-eslint/typescript-eslint/issues/1431)) ([420db96](https://github.com/typescript-eslint/typescript-eslint/commit/420db96921435e8bf7fb484ae74552a912a6adde))
1006
+
1007
+
1008
+
1009
+
1010
+
1011
+ # [2.17.0](https://github.com/typescript-eslint/typescript-eslint/compare/v2.16.0...v2.17.0) (2020-01-20)
1012
+
1013
+
1014
+ ### Bug Fixes
1015
+
1016
+ * **typescript-estree:** correct type of `ArrayPattern.elements` ([#1451](https://github.com/typescript-eslint/typescript-eslint/issues/1451)) ([62e4ca0](https://github.com/typescript-eslint/typescript-eslint/commit/62e4ca0))
1017
+
1018
+
1019
+
1020
+
1021
+
1022
+ # [2.16.0](https://github.com/typescript-eslint/typescript-eslint/compare/v2.15.0...v2.16.0) (2020-01-13)
1023
+
1024
+
1025
+ ### Bug Fixes
1026
+
1027
+ * **typescript-estree:** fix persisted parse for relative paths ([#1424](https://github.com/typescript-eslint/typescript-eslint/issues/1424)) ([9720d2c](https://github.com/typescript-eslint/typescript-eslint/commit/9720d2c))
1028
+ * **typescript-estree:** parsing of deeply nested new files in new folder ([#1412](https://github.com/typescript-eslint/typescript-eslint/issues/1412)) ([206c94b](https://github.com/typescript-eslint/typescript-eslint/commit/206c94b))
1029
+ * **typescript-estree:** resolve path relative to tsconfigRootDir ([#1439](https://github.com/typescript-eslint/typescript-eslint/issues/1439)) ([c709056](https://github.com/typescript-eslint/typescript-eslint/commit/c709056))
1030
+
1031
+
1032
+ ### Features
1033
+
1034
+ * **typescript-estree:** add parserOption to turn on debug logs ([#1413](https://github.com/typescript-eslint/typescript-eslint/issues/1413)) ([25092fd](https://github.com/typescript-eslint/typescript-eslint/commit/25092fd))
1035
+ * **typescript-estree:** add strict type mapping to esTreeNodeToTSNodeMap ([#1382](https://github.com/typescript-eslint/typescript-eslint/issues/1382)) ([d3d70a3](https://github.com/typescript-eslint/typescript-eslint/commit/d3d70a3))
1036
+
1037
+
1038
+
1039
+
1040
+
1041
+ # [2.15.0](https://github.com/typescript-eslint/typescript-eslint/compare/v2.14.0...v2.15.0) (2020-01-06)
1042
+
1043
+
1044
+ ### Bug Fixes
1045
+
1046
+ * **typescript-estree:** correct persisted parse for windows ([#1406](https://github.com/typescript-eslint/typescript-eslint/issues/1406)) ([1a42f3d](https://github.com/typescript-eslint/typescript-eslint/commit/1a42f3d))
1047
+
1048
+
1049
+
1050
+
1051
+
1052
+ # [2.14.0](https://github.com/typescript-eslint/typescript-eslint/compare/v2.13.0...v2.14.0) (2019-12-30)
1053
+
1054
+
1055
+ ### Bug Fixes
1056
+
1057
+ * **typescript-estree:** visit typeParameters in OptionalCallExpr ([#1377](https://github.com/typescript-eslint/typescript-eslint/issues/1377)) ([cba6a2a](https://github.com/typescript-eslint/typescript-eslint/commit/cba6a2a))
1058
+
1059
+
1060
+ ### Features
1061
+
1062
+ * add internal eslint plugin for repo-specific lint rules ([#1373](https://github.com/typescript-eslint/typescript-eslint/issues/1373)) ([3a15413](https://github.com/typescript-eslint/typescript-eslint/commit/3a15413))
1063
+
1064
+
1065
+
1066
+
1067
+
1068
+ # [2.13.0](https://github.com/typescript-eslint/typescript-eslint/compare/v2.12.0...v2.13.0) (2019-12-23)
1069
+
1070
+
1071
+ ### Bug Fixes
1072
+
1073
+ * **typescript-estree:** correct type of key for base nodes ([#1367](https://github.com/typescript-eslint/typescript-eslint/issues/1367)) ([099225a](https://github.com/typescript-eslint/typescript-eslint/commit/099225a))
1074
+
1075
+
1076
+ ### Features
1077
+
1078
+ * **typescript-estree:** computed members discriminated unions ([#1349](https://github.com/typescript-eslint/typescript-eslint/issues/1349)) ([013df9a](https://github.com/typescript-eslint/typescript-eslint/commit/013df9a))
1079
+ * **typescript-estree:** tighten prop name and destructure types ([#1346](https://github.com/typescript-eslint/typescript-eslint/issues/1346)) ([f335c50](https://github.com/typescript-eslint/typescript-eslint/commit/f335c50))
1080
+
1081
+
1082
+
1083
+
1084
+
1085
+ # [2.12.0](https://github.com/typescript-eslint/typescript-eslint/compare/v2.11.0...v2.12.0) (2019-12-16)
1086
+
1087
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
1088
+
1089
+
1090
+
1091
+
1092
+
1093
+ # [2.11.0](https://github.com/typescript-eslint/typescript-eslint/compare/v2.10.0...v2.11.0) (2019-12-09)
1094
+
1095
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
1096
+
1097
+
1098
+
1099
+
1100
+
1101
+ # [2.10.0](https://github.com/typescript-eslint/typescript-eslint/compare/v2.9.0...v2.10.0) (2019-12-02)
1102
+
1103
+
1104
+ ### Bug Fixes
1105
+
1106
+ * **eslint-plugin:** [no-unused-expressions] ignore directives ([#1285](https://github.com/typescript-eslint/typescript-eslint/issues/1285)) ([ce4c803](https://github.com/typescript-eslint/typescript-eslint/commit/ce4c803))
1107
+ * **typescript-estree:** make FunctionDeclaration.body non-null ([#1288](https://github.com/typescript-eslint/typescript-eslint/issues/1288)) ([dc73510](https://github.com/typescript-eslint/typescript-eslint/commit/dc73510))
1108
+
1109
+
1110
+
1111
+
1112
+
1113
+ # [2.9.0](https://github.com/typescript-eslint/typescript-eslint/compare/v2.8.0...v2.9.0) (2019-11-25)
1114
+
1115
+
1116
+ ### Bug Fixes
1117
+
1118
+ * **typescript-estree:** fix synthetic default import ([#1245](https://github.com/typescript-eslint/typescript-eslint/issues/1245)) ([d97f809](https://github.com/typescript-eslint/typescript-eslint/commit/d97f809))
1119
+
1120
+
1121
+ ### Features
1122
+
1123
+ * **eslint-plugin:** add no-unused-vars-experimental ([#688](https://github.com/typescript-eslint/typescript-eslint/issues/688)) ([05ebea5](https://github.com/typescript-eslint/typescript-eslint/commit/05ebea5))
1124
+
1125
+
1126
+
1127
+
1128
+
1129
+ # [2.8.0](https://github.com/typescript-eslint/typescript-eslint/compare/v2.7.0...v2.8.0) (2019-11-18)
1130
+
1131
+
1132
+ ### Bug Fixes
1133
+
1134
+ * **eslint-plugin:** [unified-signatures] crash: cannot read pro… ([#1096](https://github.com/typescript-eslint/typescript-eslint/issues/1096)) ([d1de3a7](https://github.com/typescript-eslint/typescript-eslint/commit/d1de3a7))
1135
+ * **typescript-estree:** correctly account for trailing slash in… ([#1205](https://github.com/typescript-eslint/typescript-eslint/issues/1205)) ([ba89168](https://github.com/typescript-eslint/typescript-eslint/commit/ba89168))
1136
+ * **typescript-estree:** options range loc being always true ([#704](https://github.com/typescript-eslint/typescript-eslint/issues/704)) ([db1aa18](https://github.com/typescript-eslint/typescript-eslint/commit/db1aa18))
1137
+
1138
+
1139
+
1140
+
1141
+
1142
+ # [2.7.0](https://github.com/typescript-eslint/typescript-eslint/compare/v2.6.1...v2.7.0) (2019-11-11)
1143
+
1144
+
1145
+ ### Bug Fixes
1146
+
1147
+ * **typescript-estree:** hash code to reduce update frequency ([#1179](https://github.com/typescript-eslint/typescript-eslint/issues/1179)) ([96d1cc3](https://github.com/typescript-eslint/typescript-eslint/commit/96d1cc3))
1148
+ * **typescript-estree:** reduce bundle footprint of tsutils ([#1177](https://github.com/typescript-eslint/typescript-eslint/issues/1177)) ([c8fe515](https://github.com/typescript-eslint/typescript-eslint/commit/c8fe515))
1149
+
1150
+
1151
+
1152
+
1153
+
1154
+ ## [2.6.1](https://github.com/typescript-eslint/typescript-eslint/compare/v2.6.0...v2.6.1) (2019-11-04)
1155
+
1156
+
1157
+ ### Bug Fixes
1158
+
1159
+ * **typescript-estree:** don't use typescript's synthetic default ([#1156](https://github.com/typescript-eslint/typescript-eslint/issues/1156)) ([17c956e](https://github.com/typescript-eslint/typescript-eslint/commit/17c956e)), closes [#1153](https://github.com/typescript-eslint/typescript-eslint/issues/1153)
1160
+ * **typescript-estree:** fix filename handling for vue JSX + markdown ([#1127](https://github.com/typescript-eslint/typescript-eslint/issues/1127)) ([366518f](https://github.com/typescript-eslint/typescript-eslint/commit/366518f))
1161
+ * **typescript-estree:** improve comment parsing code ([#1120](https://github.com/typescript-eslint/typescript-eslint/issues/1120)) ([e54998d](https://github.com/typescript-eslint/typescript-eslint/commit/e54998d))
1162
+
1163
+
1164
+
1165
+
1166
+
1167
+ # [2.6.0](https://github.com/typescript-eslint/typescript-eslint/compare/v2.5.0...v2.6.0) (2019-10-28)
1168
+
1169
+
1170
+ ### Bug Fixes
1171
+
1172
+ * **parser:** adds TTY check before logging the version mismatch warning ([#1121](https://github.com/typescript-eslint/typescript-eslint/issues/1121)) ([768ef63](https://github.com/typescript-eslint/typescript-eslint/commit/768ef63))
1173
+ * **typescript-estree:** better handle canonical paths ([#1111](https://github.com/typescript-eslint/typescript-eslint/issues/1111)) ([8dcbf4c](https://github.com/typescript-eslint/typescript-eslint/commit/8dcbf4c))
1174
+ * **typescript-estree:** correct parenthesized optional chain AST ([#1141](https://github.com/typescript-eslint/typescript-eslint/issues/1141)) ([5ae286e](https://github.com/typescript-eslint/typescript-eslint/commit/5ae286e))
1175
+ * **typescript-estree:** ensure parent pointers are set ([#1129](https://github.com/typescript-eslint/typescript-eslint/issues/1129)) ([d4703e1](https://github.com/typescript-eslint/typescript-eslint/commit/d4703e1))
1176
+ * **typescript-estree:** normalize paths to fix cache miss on windows ([#1128](https://github.com/typescript-eslint/typescript-eslint/issues/1128)) ([6d0f2ce](https://github.com/typescript-eslint/typescript-eslint/commit/6d0f2ce))
1177
+
1178
+
1179
+ ### Features
1180
+
1181
+ * **typescript-estree:** add support for declare class properties ([#1136](https://github.com/typescript-eslint/typescript-eslint/issues/1136)) ([1508670](https://github.com/typescript-eslint/typescript-eslint/commit/1508670))
1182
+
1183
+
1184
+
1185
+
1186
+
1187
+ # [2.5.0](https://github.com/typescript-eslint/typescript-eslint/compare/v2.4.0...v2.5.0) (2019-10-21)
1188
+
1189
+
1190
+ ### Bug Fixes
1191
+
1192
+ * **typescript-estree:** correct semver check range ([#1109](https://github.com/typescript-eslint/typescript-eslint/issues/1109)) ([2fc9bd2](https://github.com/typescript-eslint/typescript-eslint/commit/2fc9bd2))
1193
+ * **typescript-estree:** handle running out of fs watchers ([#1088](https://github.com/typescript-eslint/typescript-eslint/issues/1088)) ([ec62747](https://github.com/typescript-eslint/typescript-eslint/commit/ec62747))
1194
+ * **typescript-estree:** parsing error for vue sfc ([#1083](https://github.com/typescript-eslint/typescript-eslint/issues/1083)) ([7a8cce6](https://github.com/typescript-eslint/typescript-eslint/commit/7a8cce6))
1195
+ * **typescript-estree:** remove now unneeded dep on chokidar ([088a691](https://github.com/typescript-eslint/typescript-eslint/commit/088a691))
1196
+
1197
+
1198
+ ### Features
1199
+
1200
+ * **typescript-estree:** support long running lint without watch ([#1106](https://github.com/typescript-eslint/typescript-eslint/issues/1106)) ([ed5564d](https://github.com/typescript-eslint/typescript-eslint/commit/ed5564d))
1201
+
1202
+
1203
+
1204
+
1205
+
1206
+ # [2.4.0](https://github.com/typescript-eslint/typescript-eslint/compare/v2.3.3...v2.4.0) (2019-10-14)
1207
+
1208
+
1209
+ ### Bug Fixes
1210
+
1211
+ * support long running "watch" lint sessions ([#973](https://github.com/typescript-eslint/typescript-eslint/issues/973)) ([854620e](https://github.com/typescript-eslint/typescript-eslint/commit/854620e))
1212
+
1213
+
1214
+ ### Features
1215
+
1216
+ * **typescript-estree:** support for parsing 3.7 features ([#1045](https://github.com/typescript-eslint/typescript-eslint/issues/1045)) ([623febf](https://github.com/typescript-eslint/typescript-eslint/commit/623febf))
1217
+
1218
+
1219
+
1220
+
1221
+
1222
+ ## [2.3.3](https://github.com/typescript-eslint/typescript-eslint/compare/v2.3.2...v2.3.3) (2019-10-07)
1223
+
1224
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
1225
+
1226
+
1227
+
1228
+
1229
+
1230
+ ## [2.3.2](https://github.com/typescript-eslint/typescript-eslint/compare/v2.3.1...v2.3.2) (2019-09-30)
1231
+
1232
+
1233
+ ### Bug Fixes
1234
+
1235
+ * **typescript-estree:** correct ClassDeclarationBase type ([#1008](https://github.com/typescript-eslint/typescript-eslint/issues/1008)) ([8ce3a81](https://github.com/typescript-eslint/typescript-eslint/commit/8ce3a81))
1236
+ * **typescript-estree:** handle optional computed prop w/o type ([#1026](https://github.com/typescript-eslint/typescript-eslint/issues/1026)) ([95c13fe](https://github.com/typescript-eslint/typescript-eslint/commit/95c13fe))
1237
+
1238
+
1239
+
1240
+
1241
+
1242
+ ## [2.3.1](https://github.com/typescript-eslint/typescript-eslint/compare/v2.3.0...v2.3.1) (2019-09-23)
1243
+
1244
+
1245
+ ### Bug Fixes
1246
+
1247
+ * **typescript-estree:** parsing error for await in non-async func ([#988](https://github.com/typescript-eslint/typescript-eslint/issues/988)) ([19abbe0](https://github.com/typescript-eslint/typescript-eslint/commit/19abbe0))
1248
+
1249
+
1250
+
1251
+
1252
+
1253
+ # [2.3.0](https://github.com/typescript-eslint/typescript-eslint/compare/v2.2.0...v2.3.0) (2019-09-16)
1254
+
1255
+
1256
+ ### Bug Fixes
1257
+
1258
+ * **typescript-estree:** ImportDeclaration.specifier to Literal ([#974](https://github.com/typescript-eslint/typescript-eslint/issues/974)) ([2bf8231](https://github.com/typescript-eslint/typescript-eslint/commit/2bf8231))
1259
+
1260
+
1261
+
1262
+
1263
+
1264
+ # [2.2.0](https://github.com/typescript-eslint/typescript-eslint/compare/v2.1.0...v2.2.0) (2019-09-09)
1265
+
1266
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
1267
+
1268
+
1269
+
1270
+
1271
+
1272
+ # [2.1.0](https://github.com/typescript-eslint/typescript-eslint/compare/v2.0.0...v2.1.0) (2019-09-02)
1273
+
1274
+
1275
+ ### Bug Fixes
1276
+
1277
+ * **eslint-plugin:** [unified-signatures] type comparison and exported nodes ([#839](https://github.com/typescript-eslint/typescript-eslint/issues/839)) ([580eceb](https://github.com/typescript-eslint/typescript-eslint/commit/580eceb))
1278
+ * **typescript-estree:** improve missing project file error msg ([#866](https://github.com/typescript-eslint/typescript-eslint/issues/866)) ([8f3b0a8](https://github.com/typescript-eslint/typescript-eslint/commit/8f3b0a8)), closes [#853](https://github.com/typescript-eslint/typescript-eslint/issues/853)
1279
+
1280
+
1281
+ ### Features
1282
+
1283
+ * **eslint-plugin:** [no-type-alias] support tuples ([#775](https://github.com/typescript-eslint/typescript-eslint/issues/775)) ([c68e033](https://github.com/typescript-eslint/typescript-eslint/commit/c68e033))
1284
+ * **typescript-estree:** Accept a glob pattern for `options.project` ([#806](https://github.com/typescript-eslint/typescript-eslint/issues/806)) ([9e5f21e](https://github.com/typescript-eslint/typescript-eslint/commit/9e5f21e))
1285
+
1286
+
1287
+
1288
+
1289
+
1290
+ # [2.0.0](https://github.com/typescript-eslint/typescript-eslint/compare/v1.13.0...v2.0.0) (2019-08-13)
1291
+
1292
+
1293
+ * feat(eslint-plugin)!: change recommended config (#729) ([428567d](https://github.com/typescript-eslint/typescript-eslint/commit/428567d)), closes [#729](https://github.com/typescript-eslint/typescript-eslint/issues/729)
1294
+ * feat(typescript-estree)!: throw error on file not in project when `project` set (#760) ([3777b77](https://github.com/typescript-eslint/typescript-eslint/commit/3777b77)), closes [#760](https://github.com/typescript-eslint/typescript-eslint/issues/760)
1295
+ * feat(eslint-plugin)!: add rule `consistent-type-assertions` (#731) ([92e98de](https://github.com/typescript-eslint/typescript-eslint/commit/92e98de)), closes [#731](https://github.com/typescript-eslint/typescript-eslint/issues/731)
1296
+
1297
+
1298
+ ### Bug Fixes
1299
+
1300
+ * **typescript-estree:** fix `is` token typed as `Keyword ([#750](https://github.com/typescript-eslint/typescript-eslint/issues/750)) ([35dec52](https://github.com/typescript-eslint/typescript-eslint/commit/35dec52))
1301
+ * **typescript-estree:** jsx comment parsing ([#703](https://github.com/typescript-eslint/typescript-eslint/issues/703)) ([0cfc48e](https://github.com/typescript-eslint/typescript-eslint/commit/0cfc48e))
1302
+
1303
+
1304
+ ### Features
1305
+
1306
+ * explicitly support eslint v6 ([#645](https://github.com/typescript-eslint/typescript-eslint/issues/645)) ([34a7cf6](https://github.com/typescript-eslint/typescript-eslint/commit/34a7cf6))
1307
+
1308
+
1309
+ ### BREAKING CHANGES
1310
+
1311
+ * recommended config changes are considered breaking
1312
+ * by default we will now throw when a file is not in the `project` provided
1313
+ * Merges both no-angle-bracket-type-assertion and no-object-literal-type-assertion into one rule
1314
+ * Node 6 is no longer supported
1315
+
1316
+
1317
+
1318
+
1319
+
1320
+ # [1.13.0](https://github.com/typescript-eslint/typescript-eslint/compare/v1.12.0...v1.13.0) (2019-07-21)
1321
+
1322
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
1323
+
1324
+
1325
+
1326
+
1327
+
1328
+ # [1.12.0](https://github.com/typescript-eslint/typescript-eslint/compare/v1.11.0...v1.12.0) (2019-07-12)
1329
+
1330
+
1331
+ ### Bug Fixes
1332
+
1333
+ * **eslint-plugin:** handle `const;` ([#633](https://github.com/typescript-eslint/typescript-eslint/issues/633)) ([430d628](https://github.com/typescript-eslint/typescript-eslint/commit/430d628)), closes [#441](https://github.com/typescript-eslint/typescript-eslint/issues/441)
1334
+ * **typescript-estree:** fix `async` identifier token typed as `Keyword` ([#681](https://github.com/typescript-eslint/typescript-eslint/issues/681)) ([6de19d3](https://github.com/typescript-eslint/typescript-eslint/commit/6de19d3))
1335
+
1336
+
1337
+ ### Features
1338
+
1339
+ * **eslint-plugin:** added new rule prefer-readonly ([#555](https://github.com/typescript-eslint/typescript-eslint/issues/555)) ([76b89a5](https://github.com/typescript-eslint/typescript-eslint/commit/76b89a5))
1340
+
1341
+
1342
+
1343
+
1344
+
1345
+ # [1.11.0](https://github.com/typescript-eslint/typescript-eslint/compare/v1.10.2...v1.11.0) (2019-06-23)
1346
+
1347
+
1348
+ ### Bug Fixes
1349
+
1350
+ * **typescript-estree:** fix more cases with double slash in JSX text ([#607](https://github.com/typescript-eslint/typescript-eslint/issues/607)) ([34cfa53](https://github.com/typescript-eslint/typescript-eslint/commit/34cfa53))
1351
+
1352
+
1353
+
1354
+
1355
+
1356
+ ## [1.10.2](https://github.com/typescript-eslint/typescript-eslint/compare/v1.10.1...v1.10.2) (2019-06-10)
1357
+
1358
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
1359
+
1360
+ ## [1.10.1](https://github.com/typescript-eslint/typescript-eslint/compare/v1.10.0...v1.10.1) (2019-06-09)
1361
+
1362
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
1363
+
1364
+ # [1.10.0](https://github.com/typescript-eslint/typescript-eslint/compare/v1.9.0...v1.10.0) (2019-06-09)
1365
+
1366
+ ### Bug Fixes
1367
+
1368
+ - **eslint-plugin:** [explicit-function-return-type] Fix obj setter prop ([8c8497c](https://github.com/typescript-eslint/typescript-eslint/commit/8c8497c)), closes [#525](https://github.com/typescript-eslint/typescript-eslint/issues/525)
1369
+ - **eslint-plugin:** [no-extra-parens] Fix crash default switch case crash ([5ec2b32](https://github.com/typescript-eslint/typescript-eslint/commit/5ec2b32)), closes [#509](https://github.com/typescript-eslint/typescript-eslint/issues/509)
1370
+ - **typescript-estree:** allow expressions in ExportDefaultDeclaration ([#593](https://github.com/typescript-eslint/typescript-eslint/issues/593)) ([861844d](https://github.com/typescript-eslint/typescript-eslint/commit/861844d))
1371
+ - **typescript-estree:** stop ignoring comments in JSX with generic ([#596](https://github.com/typescript-eslint/typescript-eslint/issues/596)) ([31d5bd4](https://github.com/typescript-eslint/typescript-eslint/commit/31d5bd4))
1372
+
1373
+ ### Features
1374
+
1375
+ - make utils/TSESLint export typed classes instead of just types ([#526](https://github.com/typescript-eslint/typescript-eslint/issues/526)) ([370ac72](https://github.com/typescript-eslint/typescript-eslint/commit/370ac72))
1376
+ - support TypeScript versions >=3.2.1 <3.6.0 ([#597](https://github.com/typescript-eslint/typescript-eslint/issues/597)) ([5d2b962](https://github.com/typescript-eslint/typescript-eslint/commit/5d2b962))
1377
+
1378
+ # [1.9.0](https://github.com/typescript-eslint/typescript-eslint/compare/v1.8.0...v1.9.0) (2019-05-12)
1379
+
1380
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
1381
+
1382
+ # [1.8.0](https://github.com/typescript-eslint/typescript-eslint/compare/v1.7.0...v1.8.0) (2019-05-10)
1383
+
1384
+ ### Bug Fixes
1385
+
1386
+ - **eslint-plugin:** [array-type] support readonly operator ([#429](https://github.com/typescript-eslint/typescript-eslint/issues/429)) ([8e2d2f5](https://github.com/typescript-eslint/typescript-eslint/commit/8e2d2f5))
1387
+ - **eslint-plugin:** Support more nodes [no-extra-parens](<[#465](https://github.com/typescript-eslint/typescript-eslint/issues/465)>) ([2d15644](https://github.com/typescript-eslint/typescript-eslint/commit/2d15644))
1388
+ - **typescript-estree:** ensure parents are defined during subsequent parses ([#500](https://github.com/typescript-eslint/typescript-eslint/issues/500)) ([665278f](https://github.com/typescript-eslint/typescript-eslint/commit/665278f))
1389
+
1390
+ ### Features
1391
+
1392
+ - **eslint-plugin:** (EXPERIMENTAL) begin indent rewrite ([#439](https://github.com/typescript-eslint/typescript-eslint/issues/439)) ([6eb97d4](https://github.com/typescript-eslint/typescript-eslint/commit/6eb97d4))
1393
+ - **eslint-plugin:** no-inferrable-types: Support more primitives ([#442](https://github.com/typescript-eslint/typescript-eslint/issues/442)) ([4e193ca](https://github.com/typescript-eslint/typescript-eslint/commit/4e193ca))
1394
+ - **ts-estree:** add preserveNodeMaps option ([#494](https://github.com/typescript-eslint/typescript-eslint/issues/494)) ([c3061f9](https://github.com/typescript-eslint/typescript-eslint/commit/c3061f9))
1395
+ - Move shared types into their own package ([#425](https://github.com/typescript-eslint/typescript-eslint/issues/425)) ([a7a03ce](https://github.com/typescript-eslint/typescript-eslint/commit/a7a03ce))
1396
+
1397
+ # [1.7.0](https://github.com/typescript-eslint/typescript-eslint/compare/v1.6.0...v1.7.0) (2019-04-20)
1398
+
1399
+ ### Features
1400
+
1401
+ - **eslint-plugin:** support type assertions in no-extra-parens rule ([#311](https://github.com/typescript-eslint/typescript-eslint/issues/311)) ([116ca75](https://github.com/typescript-eslint/typescript-eslint/commit/116ca75))
1402
+
1403
+ # [1.6.0](https://github.com/typescript-eslint/typescript-eslint/compare/v1.5.0...v1.6.0) (2019-04-03)
1404
+
1405
+ ### Bug Fixes
1406
+
1407
+ - **typescript-estree:** add ExportDefaultDeclaration to union DeclarationStatement ([#378](https://github.com/typescript-eslint/typescript-eslint/issues/378)) ([bf04398](https://github.com/typescript-eslint/typescript-eslint/commit/bf04398))
1408
+
1409
+ ### Features
1410
+
1411
+ - change TypeScript version range to >=3.2.1 <3.5.0 ([#399](https://github.com/typescript-eslint/typescript-eslint/issues/399)) ([a4f95d3](https://github.com/typescript-eslint/typescript-eslint/commit/a4f95d3))
1412
+
1413
+ # [1.5.0](https://github.com/typescript-eslint/typescript-eslint/compare/v1.4.2...v1.5.0) (2019-03-20)
1414
+
1415
+ ### Bug Fixes
1416
+
1417
+ - **eslint-plugin:** fix false positives for adjacent-overload-signatures regarding computed property names ([#340](https://github.com/typescript-eslint/typescript-eslint/issues/340)) ([f6e5118](https://github.com/typescript-eslint/typescript-eslint/commit/f6e5118))
1418
+ - **typescript-estree:** only call watch callback on new files ([#367](https://github.com/typescript-eslint/typescript-eslint/issues/367)) ([0ef07c4](https://github.com/typescript-eslint/typescript-eslint/commit/0ef07c4))
1419
+
1420
+ ## [1.4.2](https://github.com/typescript-eslint/typescript-eslint/compare/v1.4.1...v1.4.2) (2019-02-25)
1421
+
1422
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
1423
+
1424
+ ## [1.4.1](https://github.com/typescript-eslint/typescript-eslint/compare/v1.4.0...v1.4.1) (2019-02-23)
1425
+
1426
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
1427
+
1428
+ # [1.4.0](https://github.com/typescript-eslint/typescript-eslint/compare/v1.3.0...v1.4.0) (2019-02-19)
1429
+
1430
+ ### Bug Fixes
1431
+
1432
+ - **ts-estree:** make sure that every node can be converted to tsNode ([#287](https://github.com/typescript-eslint/typescript-eslint/issues/287)) ([9f1d314](https://github.com/typescript-eslint/typescript-eslint/commit/9f1d314))
1433
+ - **typescript-estree, eslint-plugin:** stop adding ParenthesizedExpressions to node maps ([#226](https://github.com/typescript-eslint/typescript-eslint/issues/226)) ([317405a](https://github.com/typescript-eslint/typescript-eslint/commit/317405a))
1434
+
1435
+ ### Features
1436
+
1437
+ - **eslint-plugin:** add 'no-unnecessary-qualifier' rule ([#231](https://github.com/typescript-eslint/typescript-eslint/issues/231)) ([cc8f906](https://github.com/typescript-eslint/typescript-eslint/commit/cc8f906))
1438
+ - **eslint-plugin:** Migrate plugin to ts ([#120](https://github.com/typescript-eslint/typescript-eslint/issues/120)) ([61c60dc](https://github.com/typescript-eslint/typescript-eslint/commit/61c60dc))
1439
+ - **ts-estree:** fix parsing nested sequence expressions ([#286](https://github.com/typescript-eslint/typescript-eslint/issues/286)) ([ecc9631](https://github.com/typescript-eslint/typescript-eslint/commit/ecc9631))
1440
+
1441
+ # [1.3.0](https://github.com/typescript-eslint/typescript-eslint/compare/v1.2.0...v1.3.0) (2019-02-07)
1442
+
1443
+ ### Bug Fixes
1444
+
1445
+ - **ts-estree:** align typeArguments and typeParameters across nodes ([#223](https://github.com/typescript-eslint/typescript-eslint/issues/223)) ([3306198](https://github.com/typescript-eslint/typescript-eslint/commit/3306198))
1446
+ - **ts-estree:** convert decorators on var and fn decs ([#211](https://github.com/typescript-eslint/typescript-eslint/issues/211)) ([0a1777f](https://github.com/typescript-eslint/typescript-eslint/commit/0a1777f))
1447
+ - **ts-estree:** fix issues with typeParams in FunctionExpression ([#208](https://github.com/typescript-eslint/typescript-eslint/issues/208)) ([d4dfa3b](https://github.com/typescript-eslint/typescript-eslint/commit/d4dfa3b))
1448
+
1449
+ ### Features
1450
+
1451
+ - change TypeScript version range to >=3.2.1 <3.4.0 ([#184](https://github.com/typescript-eslint/typescript-eslint/issues/184)) ([f513a14](https://github.com/typescript-eslint/typescript-eslint/commit/f513a14))
1452
+ - **ts-estree:** enable errors 1098 and 1099 ([#219](https://github.com/typescript-eslint/typescript-eslint/issues/219)) ([fc50167](https://github.com/typescript-eslint/typescript-eslint/commit/fc50167))
1453
+
1454
+ # [1.2.0](https://github.com/typescript-eslint/typescript-eslint/compare/v1.1.1...v1.2.0) (2019-02-01)
1455
+
1456
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree
1457
+
1458
+ ## [1.1.1](https://github.com/typescript-eslint/typescript-eslint/compare/v1.1.0...v1.1.1) (2019-01-29)
1459
+
1460
+ ### Bug Fixes
1461
+
1462
+ - **parser:** add visiting of type parameters in JSXOpeningElement ([#150](https://github.com/typescript-eslint/typescript-eslint/issues/150)) ([5e16003](https://github.com/typescript-eslint/typescript-eslint/commit/5e16003))
1463
+ - **ts-estree:** expand optional property to include question token ([#138](https://github.com/typescript-eslint/typescript-eslint/issues/138)) ([9068b62](https://github.com/typescript-eslint/typescript-eslint/commit/9068b62))
1464
+
1465
+ ### Performance Improvements
1466
+
1467
+ - **ts-estree:** don't create Program in parse() ([#148](https://github.com/typescript-eslint/typescript-eslint/issues/148)) ([aacf5b0](https://github.com/typescript-eslint/typescript-eslint/commit/aacf5b0))
1468
+
1469
+ # [1.1.0](https://github.com/typescript-eslint/typescript-eslint/compare/v1.0.0...v1.1.0) (2019-01-23)
1470
+
1471
+ ### Bug Fixes
1472
+
1473
+ - **typescript-estree:** correct range of parameters with comments ([#128](https://github.com/typescript-eslint/typescript-eslint/issues/128)) ([91eedf2](https://github.com/typescript-eslint/typescript-eslint/commit/91eedf2))
1474
+ - **typescript-estree:** fix range of assignment in parameter ([#115](https://github.com/typescript-eslint/typescript-eslint/issues/115)) ([4e781f1](https://github.com/typescript-eslint/typescript-eslint/commit/4e781f1))
1475
+
1476
+ # [1.0.0](https://github.com/typescript-eslint/typescript-eslint/compare/v0.2.1...v1.0.0) (2019-01-20)
1477
+
1478
+ ### Features
1479
+
1480
+ - **parser:** support ecmaFeatures.jsx flag and tests ([#85](https://github.com/typescript-eslint/typescript-eslint/issues/85)) ([b321736](https://github.com/typescript-eslint/typescript-eslint/commit/b321736))
1481
+
1482
+ ## [0.2.1](https://github.com/typescript-eslint/typescript-eslint/compare/v0.2.0...v0.2.1) (2019-01-20)
1483
+
1484
+ **Note:** Version bump only for package @typescript-eslint/typescript-estree