@sprucelabs/spruce-cli 17.1.4 → 17.1.7

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 (725) hide show
  1. package/CHANGELOG.md +24 -0
  2. package/node_modules/@typescript-eslint/parser/LICENSE +22 -0
  3. package/node_modules/@typescript-eslint/parser/README.md +302 -0
  4. package/node_modules/@typescript-eslint/parser/_ts3.4/dist/index.d.ts +4 -0
  5. package/node_modules/@typescript-eslint/parser/_ts3.4/dist/parser.d.ts +20 -0
  6. package/node_modules/@typescript-eslint/parser/dist/index.d.ts +4 -0
  7. package/node_modules/@typescript-eslint/parser/dist/index.d.ts.map +1 -0
  8. package/node_modules/@typescript-eslint/parser/dist/index.js +13 -0
  9. package/node_modules/@typescript-eslint/parser/dist/index.js.map +1 -0
  10. package/node_modules/@typescript-eslint/parser/dist/parser.d.ts +17 -0
  11. package/node_modules/@typescript-eslint/parser/dist/parser.d.ts.map +1 -0
  12. package/node_modules/@typescript-eslint/parser/dist/parser.js +129 -0
  13. package/node_modules/@typescript-eslint/parser/dist/parser.js.map +1 -0
  14. package/node_modules/@typescript-eslint/parser/package.json +75 -0
  15. package/node_modules/@typescript-eslint/scope-manager/LICENSE +21 -0
  16. package/node_modules/@typescript-eslint/scope-manager/README.md +120 -0
  17. package/node_modules/@typescript-eslint/scope-manager/dist/ID.d.ts +4 -0
  18. package/node_modules/@typescript-eslint/scope-manager/dist/ID.d.ts.map +1 -0
  19. package/node_modules/@typescript-eslint/scope-manager/dist/ID.js +22 -0
  20. package/node_modules/@typescript-eslint/scope-manager/dist/ID.js.map +1 -0
  21. package/node_modules/@typescript-eslint/scope-manager/dist/ScopeManager.d.ts +72 -0
  22. package/node_modules/@typescript-eslint/scope-manager/dist/ScopeManager.d.ts.map +1 -0
  23. package/node_modules/@typescript-eslint/scope-manager/dist/ScopeManager.js +183 -0
  24. package/node_modules/@typescript-eslint/scope-manager/dist/ScopeManager.js.map +1 -0
  25. package/node_modules/@typescript-eslint/scope-manager/dist/analyze.d.ts +62 -0
  26. package/node_modules/@typescript-eslint/scope-manager/dist/analyze.d.ts.map +1 -0
  27. package/node_modules/@typescript-eslint/scope-manager/dist/analyze.js +58 -0
  28. package/node_modules/@typescript-eslint/scope-manager/dist/analyze.js.map +1 -0
  29. package/node_modules/@typescript-eslint/scope-manager/dist/assert.d.ts +3 -0
  30. package/node_modules/@typescript-eslint/scope-manager/dist/assert.d.ts.map +1 -0
  31. package/node_modules/@typescript-eslint/scope-manager/dist/assert.js +11 -0
  32. package/node_modules/@typescript-eslint/scope-manager/dist/assert.js.map +1 -0
  33. package/node_modules/@typescript-eslint/scope-manager/dist/definition/CatchClauseDefinition.d.ts +10 -0
  34. package/node_modules/@typescript-eslint/scope-manager/dist/definition/CatchClauseDefinition.d.ts.map +1 -0
  35. package/node_modules/@typescript-eslint/scope-manager/dist/definition/CatchClauseDefinition.js +14 -0
  36. package/node_modules/@typescript-eslint/scope-manager/dist/definition/CatchClauseDefinition.js.map +1 -0
  37. package/node_modules/@typescript-eslint/scope-manager/dist/definition/ClassNameDefinition.d.ts +10 -0
  38. package/node_modules/@typescript-eslint/scope-manager/dist/definition/ClassNameDefinition.d.ts.map +1 -0
  39. package/node_modules/@typescript-eslint/scope-manager/dist/definition/ClassNameDefinition.js +14 -0
  40. package/node_modules/@typescript-eslint/scope-manager/dist/definition/ClassNameDefinition.js.map +1 -0
  41. package/node_modules/@typescript-eslint/scope-manager/dist/definition/Definition.d.ts +14 -0
  42. package/node_modules/@typescript-eslint/scope-manager/dist/definition/Definition.d.ts.map +1 -0
  43. package/node_modules/@typescript-eslint/scope-manager/dist/definition/Definition.js +3 -0
  44. package/node_modules/@typescript-eslint/scope-manager/dist/definition/Definition.js.map +1 -0
  45. package/node_modules/@typescript-eslint/scope-manager/dist/definition/DefinitionBase.d.ts +39 -0
  46. package/node_modules/@typescript-eslint/scope-manager/dist/definition/DefinitionBase.d.ts.map +1 -0
  47. package/node_modules/@typescript-eslint/scope-manager/dist/definition/DefinitionBase.js +19 -0
  48. package/node_modules/@typescript-eslint/scope-manager/dist/definition/DefinitionBase.js.map +1 -0
  49. package/node_modules/@typescript-eslint/scope-manager/dist/definition/DefinitionType.d.ts +15 -0
  50. package/node_modules/@typescript-eslint/scope-manager/dist/definition/DefinitionType.d.ts.map +1 -0
  51. package/node_modules/@typescript-eslint/scope-manager/dist/definition/DefinitionType.js +19 -0
  52. package/node_modules/@typescript-eslint/scope-manager/dist/definition/DefinitionType.js.map +1 -0
  53. package/node_modules/@typescript-eslint/scope-manager/dist/definition/FunctionNameDefinition.d.ts +10 -0
  54. package/node_modules/@typescript-eslint/scope-manager/dist/definition/FunctionNameDefinition.d.ts.map +1 -0
  55. package/node_modules/@typescript-eslint/scope-manager/dist/definition/FunctionNameDefinition.js +14 -0
  56. package/node_modules/@typescript-eslint/scope-manager/dist/definition/FunctionNameDefinition.js.map +1 -0
  57. package/node_modules/@typescript-eslint/scope-manager/dist/definition/ImplicitGlobalVariableDefinition.d.ts +10 -0
  58. package/node_modules/@typescript-eslint/scope-manager/dist/definition/ImplicitGlobalVariableDefinition.d.ts.map +1 -0
  59. package/node_modules/@typescript-eslint/scope-manager/dist/definition/ImplicitGlobalVariableDefinition.js +14 -0
  60. package/node_modules/@typescript-eslint/scope-manager/dist/definition/ImplicitGlobalVariableDefinition.js.map +1 -0
  61. package/node_modules/@typescript-eslint/scope-manager/dist/definition/ImportBindingDefinition.d.ts +11 -0
  62. package/node_modules/@typescript-eslint/scope-manager/dist/definition/ImportBindingDefinition.d.ts.map +1 -0
  63. package/node_modules/@typescript-eslint/scope-manager/dist/definition/ImportBindingDefinition.js +14 -0
  64. package/node_modules/@typescript-eslint/scope-manager/dist/definition/ImportBindingDefinition.js.map +1 -0
  65. package/node_modules/@typescript-eslint/scope-manager/dist/definition/ParameterDefinition.d.ts +14 -0
  66. package/node_modules/@typescript-eslint/scope-manager/dist/definition/ParameterDefinition.d.ts.map +1 -0
  67. package/node_modules/@typescript-eslint/scope-manager/dist/definition/ParameterDefinition.js +15 -0
  68. package/node_modules/@typescript-eslint/scope-manager/dist/definition/ParameterDefinition.js.map +1 -0
  69. package/node_modules/@typescript-eslint/scope-manager/dist/definition/TSEnumMemberDefinition.d.ts +10 -0
  70. package/node_modules/@typescript-eslint/scope-manager/dist/definition/TSEnumMemberDefinition.d.ts.map +1 -0
  71. package/node_modules/@typescript-eslint/scope-manager/dist/definition/TSEnumMemberDefinition.js +14 -0
  72. package/node_modules/@typescript-eslint/scope-manager/dist/definition/TSEnumMemberDefinition.js.map +1 -0
  73. package/node_modules/@typescript-eslint/scope-manager/dist/definition/TSEnumNameDefinition.d.ts +10 -0
  74. package/node_modules/@typescript-eslint/scope-manager/dist/definition/TSEnumNameDefinition.d.ts.map +1 -0
  75. package/node_modules/@typescript-eslint/scope-manager/dist/definition/TSEnumNameDefinition.js +14 -0
  76. package/node_modules/@typescript-eslint/scope-manager/dist/definition/TSEnumNameDefinition.js.map +1 -0
  77. package/node_modules/@typescript-eslint/scope-manager/dist/definition/TSModuleNameDefinition.d.ts +10 -0
  78. package/node_modules/@typescript-eslint/scope-manager/dist/definition/TSModuleNameDefinition.d.ts.map +1 -0
  79. package/node_modules/@typescript-eslint/scope-manager/dist/definition/TSModuleNameDefinition.js +14 -0
  80. package/node_modules/@typescript-eslint/scope-manager/dist/definition/TSModuleNameDefinition.js.map +1 -0
  81. package/node_modules/@typescript-eslint/scope-manager/dist/definition/TypeDefinition.d.ts +10 -0
  82. package/node_modules/@typescript-eslint/scope-manager/dist/definition/TypeDefinition.d.ts.map +1 -0
  83. package/node_modules/@typescript-eslint/scope-manager/dist/definition/TypeDefinition.js +14 -0
  84. package/node_modules/@typescript-eslint/scope-manager/dist/definition/TypeDefinition.js.map +1 -0
  85. package/node_modules/@typescript-eslint/scope-manager/dist/definition/VariableDefinition.d.ts +10 -0
  86. package/node_modules/@typescript-eslint/scope-manager/dist/definition/VariableDefinition.d.ts.map +1 -0
  87. package/node_modules/@typescript-eslint/scope-manager/dist/definition/VariableDefinition.js +14 -0
  88. package/node_modules/@typescript-eslint/scope-manager/dist/definition/VariableDefinition.js.map +1 -0
  89. package/node_modules/@typescript-eslint/scope-manager/dist/definition/index.d.ts +14 -0
  90. package/node_modules/@typescript-eslint/scope-manager/dist/definition/index.d.ts.map +1 -0
  91. package/node_modules/@typescript-eslint/scope-manager/dist/definition/index.js +30 -0
  92. package/node_modules/@typescript-eslint/scope-manager/dist/definition/index.js.map +1 -0
  93. package/node_modules/@typescript-eslint/scope-manager/dist/index.d.ts +9 -0
  94. package/node_modules/@typescript-eslint/scope-manager/dist/index.d.ts.map +1 -0
  95. package/node_modules/@typescript-eslint/scope-manager/dist/index.js +31 -0
  96. package/node_modules/@typescript-eslint/scope-manager/dist/index.js.map +1 -0
  97. package/node_modules/@typescript-eslint/scope-manager/dist/lib/base-config.d.ts +16 -0
  98. package/node_modules/@typescript-eslint/scope-manager/dist/lib/base-config.d.ts.map +1 -0
  99. package/node_modules/@typescript-eslint/scope-manager/dist/lib/base-config.js +23 -0
  100. package/node_modules/@typescript-eslint/scope-manager/dist/lib/base-config.js.map +1 -0
  101. package/node_modules/@typescript-eslint/scope-manager/dist/lib/dom.d.ts +3 -0
  102. package/node_modules/@typescript-eslint/scope-manager/dist/lib/dom.d.ts.map +1 -0
  103. package/node_modules/@typescript-eslint/scope-manager/dist/lib/dom.iterable.d.ts +3 -0
  104. package/node_modules/@typescript-eslint/scope-manager/dist/lib/dom.iterable.d.ts.map +1 -0
  105. package/node_modules/@typescript-eslint/scope-manager/dist/lib/dom.iterable.js +69 -0
  106. package/node_modules/@typescript-eslint/scope-manager/dist/lib/dom.iterable.js.map +1 -0
  107. package/node_modules/@typescript-eslint/scope-manager/dist/lib/dom.js +1298 -0
  108. package/node_modules/@typescript-eslint/scope-manager/dist/lib/dom.js.map +1 -0
  109. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.collection.d.ts +3 -0
  110. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.collection.d.ts.map +1 -0
  111. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.collection.js +21 -0
  112. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.collection.js.map +1 -0
  113. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.core.d.ts +3 -0
  114. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.core.d.ts.map +1 -0
  115. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.core.js +23 -0
  116. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.core.js.map +1 -0
  117. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.d.ts +3 -0
  118. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.d.ts.map +1 -0
  119. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.generator.d.ts +3 -0
  120. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.generator.d.ts.map +1 -0
  121. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.generator.js +11 -0
  122. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.generator.js.map +1 -0
  123. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.iterable.d.ts +3 -0
  124. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.iterable.d.ts.map +1 -0
  125. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.iterable.js +11 -0
  126. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.iterable.js.map +1 -0
  127. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.js +19 -0
  128. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.js.map +1 -0
  129. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.promise.d.ts +3 -0
  130. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.promise.d.ts.map +1 -0
  131. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.promise.js +12 -0
  132. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.promise.js.map +1 -0
  133. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.proxy.d.ts +3 -0
  134. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.proxy.d.ts.map +1 -0
  135. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.proxy.js +13 -0
  136. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.proxy.js.map +1 -0
  137. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.reflect.d.ts +3 -0
  138. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.reflect.d.ts.map +1 -0
  139. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.reflect.js +12 -0
  140. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.reflect.js.map +1 -0
  141. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.symbol.d.ts +3 -0
  142. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.symbol.d.ts.map +1 -0
  143. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.symbol.js +12 -0
  144. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.symbol.js.map +1 -0
  145. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.symbol.wellknown.d.ts +3 -0
  146. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.symbol.wellknown.d.ts.map +1 -0
  147. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.symbol.wellknown.js +11 -0
  148. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.symbol.wellknown.js.map +1 -0
  149. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.array.include.d.ts +3 -0
  150. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.array.include.d.ts.map +1 -0
  151. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.array.include.js +22 -0
  152. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.array.include.js.map +1 -0
  153. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.d.ts +3 -0
  154. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.d.ts.map +1 -0
  155. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.full.d.ts +3 -0
  156. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.full.d.ts.map +1 -0
  157. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.full.js +14 -0
  158. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.full.js.map +1 -0
  159. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.js +11 -0
  160. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.js.map +1 -0
  161. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.d.ts +3 -0
  162. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.d.ts.map +1 -0
  163. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.full.d.ts +3 -0
  164. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.full.d.ts.map +1 -0
  165. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.full.js +14 -0
  166. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.full.js.map +1 -0
  167. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.intl.d.ts +3 -0
  168. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.intl.d.ts.map +1 -0
  169. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.intl.js +12 -0
  170. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.intl.js.map +1 -0
  171. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.js +15 -0
  172. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.js.map +1 -0
  173. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.object.d.ts +3 -0
  174. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.object.d.ts.map +1 -0
  175. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.object.js +12 -0
  176. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.object.js.map +1 -0
  177. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.sharedmemory.d.ts +3 -0
  178. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.sharedmemory.d.ts.map +1 -0
  179. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.sharedmemory.js +12 -0
  180. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.sharedmemory.js.map +1 -0
  181. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.string.d.ts +3 -0
  182. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.string.d.ts.map +1 -0
  183. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.string.js +12 -0
  184. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.string.js.map +1 -0
  185. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.typedarrays.d.ts +3 -0
  186. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.typedarrays.d.ts.map +1 -0
  187. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.typedarrays.js +20 -0
  188. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.typedarrays.js.map +1 -0
  189. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.asyncgenerator.d.ts +3 -0
  190. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.asyncgenerator.d.ts.map +1 -0
  191. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.asyncgenerator.js +11 -0
  192. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.asyncgenerator.js.map +1 -0
  193. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.asynciterable.d.ts +3 -0
  194. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.asynciterable.d.ts.map +1 -0
  195. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.asynciterable.js +12 -0
  196. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.asynciterable.js.map +1 -0
  197. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.d.ts +3 -0
  198. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.d.ts.map +1 -0
  199. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.full.d.ts +3 -0
  200. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.full.d.ts.map +1 -0
  201. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.full.js +14 -0
  202. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.full.js.map +1 -0
  203. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.intl.d.ts +3 -0
  204. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.intl.d.ts.map +1 -0
  205. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.intl.js +12 -0
  206. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.intl.js.map +1 -0
  207. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.js +15 -0
  208. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.js.map +1 -0
  209. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.promise.d.ts +3 -0
  210. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.promise.d.ts.map +1 -0
  211. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.promise.js +12 -0
  212. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.promise.js.map +1 -0
  213. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.regexp.d.ts +3 -0
  214. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.regexp.d.ts.map +1 -0
  215. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.regexp.js +14 -0
  216. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.regexp.js.map +1 -0
  217. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.array.d.ts +3 -0
  218. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.array.d.ts.map +1 -0
  219. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.array.js +14 -0
  220. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.array.js.map +1 -0
  221. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.d.ts +3 -0
  222. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.d.ts.map +1 -0
  223. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.full.d.ts +3 -0
  224. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.full.d.ts.map +1 -0
  225. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.full.js +14 -0
  226. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.full.js.map +1 -0
  227. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.js +14 -0
  228. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.js.map +1 -0
  229. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.object.d.ts +3 -0
  230. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.object.d.ts.map +1 -0
  231. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.object.js +11 -0
  232. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.object.js.map +1 -0
  233. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.string.d.ts +3 -0
  234. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.string.d.ts.map +1 -0
  235. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.string.js +12 -0
  236. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.string.js.map +1 -0
  237. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.symbol.d.ts +3 -0
  238. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.symbol.d.ts.map +1 -0
  239. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.symbol.js +12 -0
  240. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.symbol.js.map +1 -0
  241. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.bigint.d.ts +3 -0
  242. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.bigint.d.ts.map +1 -0
  243. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.bigint.js +11 -0
  244. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.bigint.js.map +1 -0
  245. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.d.ts +3 -0
  246. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.d.ts.map +1 -0
  247. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.date.d.ts +3 -0
  248. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.date.d.ts.map +1 -0
  249. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.date.js +11 -0
  250. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.date.js.map +1 -0
  251. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.full.d.ts +3 -0
  252. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.full.d.ts.map +1 -0
  253. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.full.js +14 -0
  254. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.full.js.map +1 -0
  255. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.intl.d.ts +3 -0
  256. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.intl.d.ts.map +1 -0
  257. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.intl.js +12 -0
  258. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.intl.js.map +1 -0
  259. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.js +18 -0
  260. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.js.map +1 -0
  261. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.number.d.ts +3 -0
  262. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.number.d.ts.map +1 -0
  263. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.number.js +11 -0
  264. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.number.js.map +1 -0
  265. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.promise.d.ts +3 -0
  266. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.promise.d.ts.map +1 -0
  267. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.promise.js +15 -0
  268. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.promise.js.map +1 -0
  269. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.sharedmemory.d.ts +3 -0
  270. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.sharedmemory.d.ts.map +1 -0
  271. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.sharedmemory.js +12 -0
  272. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.sharedmemory.js.map +1 -0
  273. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.string.d.ts +3 -0
  274. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.string.d.ts.map +1 -0
  275. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.string.js +11 -0
  276. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.string.js.map +1 -0
  277. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.symbol.wellknown.d.ts +3 -0
  278. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.symbol.wellknown.d.ts.map +1 -0
  279. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.symbol.wellknown.js +12 -0
  280. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.symbol.wellknown.js.map +1 -0
  281. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.d.ts +3 -0
  282. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.d.ts.map +1 -0
  283. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.full.d.ts +3 -0
  284. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.full.d.ts.map +1 -0
  285. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.full.js +14 -0
  286. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.full.js.map +1 -0
  287. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.intl.d.ts +3 -0
  288. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.intl.d.ts.map +1 -0
  289. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.intl.js +12 -0
  290. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.intl.js.map +1 -0
  291. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.js +14 -0
  292. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.js.map +1 -0
  293. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.promise.d.ts +3 -0
  294. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.promise.d.ts.map +1 -0
  295. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.promise.js +14 -0
  296. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.promise.js.map +1 -0
  297. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.string.d.ts +3 -0
  298. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.string.d.ts.map +1 -0
  299. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.string.js +12 -0
  300. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.string.js.map +1 -0
  301. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.weakref.d.ts +3 -0
  302. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.weakref.d.ts.map +1 -0
  303. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.weakref.js +15 -0
  304. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.weakref.js.map +1 -0
  305. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.array.d.ts +3 -0
  306. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.array.d.ts.map +1 -0
  307. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.array.js +24 -0
  308. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.array.js.map +1 -0
  309. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.d.ts +3 -0
  310. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.d.ts.map +1 -0
  311. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.error.d.ts +3 -0
  312. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.error.d.ts.map +1 -0
  313. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.error.js +21 -0
  314. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.error.js.map +1 -0
  315. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.full.d.ts +3 -0
  316. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.full.d.ts.map +1 -0
  317. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.full.js +14 -0
  318. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.full.js.map +1 -0
  319. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.js +14 -0
  320. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.js.map +1 -0
  321. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.object.d.ts +3 -0
  322. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.object.d.ts.map +1 -0
  323. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.object.js +12 -0
  324. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.object.js.map +1 -0
  325. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.string.d.ts +3 -0
  326. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.string.d.ts.map +1 -0
  327. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.string.js +12 -0
  328. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.string.js.map +1 -0
  329. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es5.d.ts +3 -0
  330. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es5.d.ts.map +1 -0
  331. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es5.js +114 -0
  332. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es5.js.map +1 -0
  333. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es6.d.ts +3 -0
  334. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es6.d.ts.map +1 -0
  335. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es6.js +19 -0
  336. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es6.js.map +1 -0
  337. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es7.d.ts +3 -0
  338. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es7.d.ts.map +1 -0
  339. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es7.js +11 -0
  340. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es7.js.map +1 -0
  341. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.array.d.ts +3 -0
  342. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.array.d.ts.map +1 -0
  343. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.array.js +24 -0
  344. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.array.js.map +1 -0
  345. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.asynciterable.d.ts +3 -0
  346. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.asynciterable.d.ts.map +1 -0
  347. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.asynciterable.js +12 -0
  348. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.asynciterable.js.map +1 -0
  349. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.bigint.d.ts +3 -0
  350. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.bigint.d.ts.map +1 -0
  351. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.bigint.js +11 -0
  352. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.bigint.js.map +1 -0
  353. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.d.ts +3 -0
  354. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.d.ts.map +1 -0
  355. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.full.d.ts +3 -0
  356. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.full.d.ts.map +1 -0
  357. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.full.js +14 -0
  358. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.full.js.map +1 -0
  359. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.intl.d.ts +3 -0
  360. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.intl.d.ts.map +1 -0
  361. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.intl.js +12 -0
  362. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.intl.js.map +1 -0
  363. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.js +11 -0
  364. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.js.map +1 -0
  365. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.promise.d.ts +3 -0
  366. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.promise.d.ts.map +1 -0
  367. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.promise.js +14 -0
  368. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.promise.js.map +1 -0
  369. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.string.d.ts +3 -0
  370. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.string.d.ts.map +1 -0
  371. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.string.js +12 -0
  372. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.string.js.map +1 -0
  373. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.symbol.d.ts +3 -0
  374. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.symbol.d.ts.map +1 -0
  375. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.symbol.js +12 -0
  376. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.symbol.js.map +1 -0
  377. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.weakref.d.ts +3 -0
  378. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.weakref.d.ts.map +1 -0
  379. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.weakref.js +15 -0
  380. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.weakref.js.map +1 -0
  381. package/node_modules/@typescript-eslint/scope-manager/dist/lib/index.d.ts +79 -0
  382. package/node_modules/@typescript-eslint/scope-manager/dist/lib/index.d.ts.map +1 -0
  383. package/node_modules/@typescript-eslint/scope-manager/dist/lib/index.js +161 -0
  384. package/node_modules/@typescript-eslint/scope-manager/dist/lib/index.js.map +1 -0
  385. package/node_modules/@typescript-eslint/scope-manager/dist/lib/lib.d.ts +3 -0
  386. package/node_modules/@typescript-eslint/scope-manager/dist/lib/lib.d.ts.map +1 -0
  387. package/node_modules/@typescript-eslint/scope-manager/dist/lib/lib.js +13 -0
  388. package/node_modules/@typescript-eslint/scope-manager/dist/lib/lib.js.map +1 -0
  389. package/node_modules/@typescript-eslint/scope-manager/dist/lib/scripthost.d.ts +3 -0
  390. package/node_modules/@typescript-eslint/scope-manager/dist/lib/scripthost.d.ts.map +1 -0
  391. package/node_modules/@typescript-eslint/scope-manager/dist/lib/scripthost.js +24 -0
  392. package/node_modules/@typescript-eslint/scope-manager/dist/lib/scripthost.js.map +1 -0
  393. package/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.d.ts +3 -0
  394. package/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.d.ts.map +1 -0
  395. package/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.importscripts.d.ts +3 -0
  396. package/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.importscripts.d.ts.map +1 -0
  397. package/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.importscripts.js +9 -0
  398. package/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.importscripts.js.map +1 -0
  399. package/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.iterable.d.ts +3 -0
  400. package/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.iterable.d.ts.map +1 -0
  401. package/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.iterable.js +28 -0
  402. package/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.iterable.js.map +1 -0
  403. package/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.js +452 -0
  404. package/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.js.map +1 -0
  405. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/ClassVisitor.d.ts +26 -0
  406. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/ClassVisitor.d.ts.map +1 -0
  407. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/ClassVisitor.js +316 -0
  408. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/ClassVisitor.js.map +1 -0
  409. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/ExportVisitor.d.ts +15 -0
  410. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/ExportVisitor.d.ts.map +1 -0
  411. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/ExportVisitor.js +84 -0
  412. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/ExportVisitor.js.map +1 -0
  413. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/ImportVisitor.d.ts +14 -0
  414. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/ImportVisitor.d.ts.map +1 -0
  415. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/ImportVisitor.js +50 -0
  416. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/ImportVisitor.js.map +1 -0
  417. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/PatternVisitor.d.ts +28 -0
  418. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/PatternVisitor.d.ts.map +1 -0
  419. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/PatternVisitor.js +111 -0
  420. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/PatternVisitor.js.map +1 -0
  421. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/Reference.d.ts +89 -0
  422. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/Reference.d.ts.map +1 -0
  423. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/Reference.js +109 -0
  424. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/Reference.js.map +1 -0
  425. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/Referencer.d.ts +83 -0
  426. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/Referencer.d.ts.map +1 -0
  427. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/Referencer.js +540 -0
  428. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/Referencer.js.map +1 -0
  429. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/TypeVisitor.d.ts +33 -0
  430. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/TypeVisitor.d.ts.map +1 -0
  431. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/TypeVisitor.js +228 -0
  432. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/TypeVisitor.js.map +1 -0
  433. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/Visitor.d.ts +13 -0
  434. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/Visitor.d.ts.map +1 -0
  435. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/Visitor.js +41 -0
  436. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/Visitor.js.map +1 -0
  437. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/VisitorBase.d.ts +22 -0
  438. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/VisitorBase.d.ts.map +1 -0
  439. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/VisitorBase.js +82 -0
  440. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/VisitorBase.js.map +1 -0
  441. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/index.d.ts +2 -0
  442. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/index.d.ts.map +1 -0
  443. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/index.js +6 -0
  444. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/index.js.map +1 -0
  445. package/node_modules/@typescript-eslint/scope-manager/dist/scope/BlockScope.d.ts +10 -0
  446. package/node_modules/@typescript-eslint/scope-manager/dist/scope/BlockScope.d.ts.map +1 -0
  447. package/node_modules/@typescript-eslint/scope-manager/dist/scope/BlockScope.js +12 -0
  448. package/node_modules/@typescript-eslint/scope-manager/dist/scope/BlockScope.js.map +1 -0
  449. package/node_modules/@typescript-eslint/scope-manager/dist/scope/CatchScope.d.ts +10 -0
  450. package/node_modules/@typescript-eslint/scope-manager/dist/scope/CatchScope.d.ts.map +1 -0
  451. package/node_modules/@typescript-eslint/scope-manager/dist/scope/CatchScope.js +12 -0
  452. package/node_modules/@typescript-eslint/scope-manager/dist/scope/CatchScope.js.map +1 -0
  453. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassFieldInitializerScope.d.ts +10 -0
  454. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassFieldInitializerScope.d.ts.map +1 -0
  455. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassFieldInitializerScope.js +12 -0
  456. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassFieldInitializerScope.js.map +1 -0
  457. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassScope.d.ts +10 -0
  458. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassScope.d.ts.map +1 -0
  459. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassScope.js +12 -0
  460. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassScope.js.map +1 -0
  461. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassStaticBlockScope.d.ts +10 -0
  462. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassStaticBlockScope.d.ts.map +1 -0
  463. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassStaticBlockScope.js +12 -0
  464. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassStaticBlockScope.js.map +1 -0
  465. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ConditionalTypeScope.d.ts +10 -0
  466. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ConditionalTypeScope.d.ts.map +1 -0
  467. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ConditionalTypeScope.js +12 -0
  468. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ConditionalTypeScope.js.map +1 -0
  469. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ForScope.d.ts +10 -0
  470. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ForScope.d.ts.map +1 -0
  471. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ForScope.js +12 -0
  472. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ForScope.js.map +1 -0
  473. package/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionExpressionNameScope.d.ts +11 -0
  474. package/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionExpressionNameScope.d.ts.map +1 -0
  475. package/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionExpressionNameScope.js +17 -0
  476. package/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionExpressionNameScope.js.map +1 -0
  477. package/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionScope.d.ts +13 -0
  478. package/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionScope.d.ts.map +1 -0
  479. package/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionScope.js +37 -0
  480. package/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionScope.js.map +1 -0
  481. package/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionTypeScope.d.ts +10 -0
  482. package/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionTypeScope.d.ts.map +1 -0
  483. package/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionTypeScope.js +12 -0
  484. package/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionTypeScope.js.map +1 -0
  485. package/node_modules/@typescript-eslint/scope-manager/dist/scope/GlobalScope.d.ts +18 -0
  486. package/node_modules/@typescript-eslint/scope-manager/dist/scope/GlobalScope.d.ts.map +1 -0
  487. package/node_modules/@typescript-eslint/scope-manager/dist/scope/GlobalScope.js +39 -0
  488. package/node_modules/@typescript-eslint/scope-manager/dist/scope/GlobalScope.js.map +1 -0
  489. package/node_modules/@typescript-eslint/scope-manager/dist/scope/MappedTypeScope.d.ts +10 -0
  490. package/node_modules/@typescript-eslint/scope-manager/dist/scope/MappedTypeScope.d.ts.map +1 -0
  491. package/node_modules/@typescript-eslint/scope-manager/dist/scope/MappedTypeScope.js +12 -0
  492. package/node_modules/@typescript-eslint/scope-manager/dist/scope/MappedTypeScope.js.map +1 -0
  493. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ModuleScope.d.ts +10 -0
  494. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ModuleScope.d.ts.map +1 -0
  495. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ModuleScope.js +12 -0
  496. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ModuleScope.js.map +1 -0
  497. package/node_modules/@typescript-eslint/scope-manager/dist/scope/Scope.d.ts +21 -0
  498. package/node_modules/@typescript-eslint/scope-manager/dist/scope/Scope.d.ts.map +1 -0
  499. package/node_modules/@typescript-eslint/scope-manager/dist/scope/Scope.js +3 -0
  500. package/node_modules/@typescript-eslint/scope-manager/dist/scope/Scope.js.map +1 -0
  501. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ScopeBase.d.ts +106 -0
  502. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ScopeBase.d.ts.map +1 -0
  503. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ScopeBase.js +363 -0
  504. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ScopeBase.js.map +1 -0
  505. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ScopeType.d.ts +22 -0
  506. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ScopeType.d.ts.map +1 -0
  507. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ScopeType.js +26 -0
  508. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ScopeType.js.map +1 -0
  509. package/node_modules/@typescript-eslint/scope-manager/dist/scope/SwitchScope.d.ts +10 -0
  510. package/node_modules/@typescript-eslint/scope-manager/dist/scope/SwitchScope.d.ts.map +1 -0
  511. package/node_modules/@typescript-eslint/scope-manager/dist/scope/SwitchScope.js +12 -0
  512. package/node_modules/@typescript-eslint/scope-manager/dist/scope/SwitchScope.js.map +1 -0
  513. package/node_modules/@typescript-eslint/scope-manager/dist/scope/TSEnumScope.d.ts +10 -0
  514. package/node_modules/@typescript-eslint/scope-manager/dist/scope/TSEnumScope.d.ts.map +1 -0
  515. package/node_modules/@typescript-eslint/scope-manager/dist/scope/TSEnumScope.js +12 -0
  516. package/node_modules/@typescript-eslint/scope-manager/dist/scope/TSEnumScope.js.map +1 -0
  517. package/node_modules/@typescript-eslint/scope-manager/dist/scope/TSModuleScope.d.ts +10 -0
  518. package/node_modules/@typescript-eslint/scope-manager/dist/scope/TSModuleScope.d.ts.map +1 -0
  519. package/node_modules/@typescript-eslint/scope-manager/dist/scope/TSModuleScope.js +12 -0
  520. package/node_modules/@typescript-eslint/scope-manager/dist/scope/TSModuleScope.js.map +1 -0
  521. package/node_modules/@typescript-eslint/scope-manager/dist/scope/TypeScope.d.ts +10 -0
  522. package/node_modules/@typescript-eslint/scope-manager/dist/scope/TypeScope.d.ts.map +1 -0
  523. package/node_modules/@typescript-eslint/scope-manager/dist/scope/TypeScope.js +12 -0
  524. package/node_modules/@typescript-eslint/scope-manager/dist/scope/TypeScope.js.map +1 -0
  525. package/node_modules/@typescript-eslint/scope-manager/dist/scope/WithScope.d.ts +11 -0
  526. package/node_modules/@typescript-eslint/scope-manager/dist/scope/WithScope.d.ts.map +1 -0
  527. package/node_modules/@typescript-eslint/scope-manager/dist/scope/WithScope.js +22 -0
  528. package/node_modules/@typescript-eslint/scope-manager/dist/scope/WithScope.js.map +1 -0
  529. package/node_modules/@typescript-eslint/scope-manager/dist/scope/index.d.ts +20 -0
  530. package/node_modules/@typescript-eslint/scope-manager/dist/scope/index.d.ts.map +1 -0
  531. package/node_modules/@typescript-eslint/scope-manager/dist/scope/index.js +36 -0
  532. package/node_modules/@typescript-eslint/scope-manager/dist/scope/index.js.map +1 -0
  533. package/node_modules/@typescript-eslint/scope-manager/dist/variable/ESLintScopeVariable.d.ts +34 -0
  534. package/node_modules/@typescript-eslint/scope-manager/dist/variable/ESLintScopeVariable.d.ts.map +1 -0
  535. package/node_modules/@typescript-eslint/scope-manager/dist/variable/ESLintScopeVariable.js +12 -0
  536. package/node_modules/@typescript-eslint/scope-manager/dist/variable/ESLintScopeVariable.js.map +1 -0
  537. package/node_modules/@typescript-eslint/scope-manager/dist/variable/ImplicitLibVariable.d.ts +25 -0
  538. package/node_modules/@typescript-eslint/scope-manager/dist/variable/ImplicitLibVariable.d.ts.map +1 -0
  539. package/node_modules/@typescript-eslint/scope-manager/dist/variable/ImplicitLibVariable.js +19 -0
  540. package/node_modules/@typescript-eslint/scope-manager/dist/variable/ImplicitLibVariable.js.map +1 -0
  541. package/node_modules/@typescript-eslint/scope-manager/dist/variable/Variable.d.ts +18 -0
  542. package/node_modules/@typescript-eslint/scope-manager/dist/variable/Variable.d.ts.map +1 -0
  543. package/node_modules/@typescript-eslint/scope-manager/dist/variable/Variable.js +33 -0
  544. package/node_modules/@typescript-eslint/scope-manager/dist/variable/Variable.js.map +1 -0
  545. package/node_modules/@typescript-eslint/scope-manager/dist/variable/VariableBase.d.ts +44 -0
  546. package/node_modules/@typescript-eslint/scope-manager/dist/variable/VariableBase.d.ts.map +1 -0
  547. package/node_modules/@typescript-eslint/scope-manager/dist/variable/VariableBase.js +39 -0
  548. package/node_modules/@typescript-eslint/scope-manager/dist/variable/VariableBase.js.map +1 -0
  549. package/node_modules/@typescript-eslint/scope-manager/dist/variable/index.d.ts +4 -0
  550. package/node_modules/@typescript-eslint/scope-manager/dist/variable/index.d.ts.map +1 -0
  551. package/node_modules/@typescript-eslint/scope-manager/dist/variable/index.js +10 -0
  552. package/node_modules/@typescript-eslint/scope-manager/dist/variable/index.js.map +1 -0
  553. package/node_modules/@typescript-eslint/scope-manager/package.json +67 -0
  554. package/node_modules/@typescript-eslint/types/LICENSE +21 -0
  555. package/node_modules/@typescript-eslint/types/README.md +17 -0
  556. package/node_modules/@typescript-eslint/types/_ts3.4/dist/generated/ast-spec.d.ts +1732 -0
  557. package/node_modules/@typescript-eslint/types/_ts3.4/dist/index.d.ts +5 -0
  558. package/node_modules/@typescript-eslint/types/_ts3.4/dist/lib.d.ts +3 -0
  559. package/node_modules/@typescript-eslint/types/_ts3.4/dist/parser-options.d.ts +35 -0
  560. package/node_modules/@typescript-eslint/types/_ts3.4/dist/ts-estree.d.ts +9 -0
  561. package/node_modules/@typescript-eslint/types/dist/generated/ast-spec.d.ts +1729 -0
  562. package/node_modules/@typescript-eslint/types/dist/generated/ast-spec.d.ts.map +1 -0
  563. package/node_modules/@typescript-eslint/types/dist/generated/ast-spec.js +199 -0
  564. package/node_modules/@typescript-eslint/types/dist/generated/ast-spec.js.map +1 -0
  565. package/node_modules/@typescript-eslint/types/dist/index.d.ts +5 -0
  566. package/node_modules/@typescript-eslint/types/dist/index.d.ts.map +1 -0
  567. package/node_modules/@typescript-eslint/types/dist/index.js +24 -0
  568. package/node_modules/@typescript-eslint/types/dist/index.js.map +1 -0
  569. package/node_modules/@typescript-eslint/types/dist/lib.d.ts +3 -0
  570. package/node_modules/@typescript-eslint/types/dist/lib.d.ts.map +1 -0
  571. package/node_modules/@typescript-eslint/types/dist/lib.js +7 -0
  572. package/node_modules/@typescript-eslint/types/dist/lib.js.map +1 -0
  573. package/node_modules/@typescript-eslint/types/dist/parser-options.d.ts +35 -0
  574. package/node_modules/@typescript-eslint/types/dist/parser-options.d.ts.map +1 -0
  575. package/node_modules/@typescript-eslint/types/dist/parser-options.js +3 -0
  576. package/node_modules/@typescript-eslint/types/dist/parser-options.js.map +1 -0
  577. package/node_modules/@typescript-eslint/types/dist/ts-estree.d.ts +8 -0
  578. package/node_modules/@typescript-eslint/types/dist/ts-estree.d.ts.map +1 -0
  579. package/node_modules/@typescript-eslint/types/dist/ts-estree.js +28 -0
  580. package/node_modules/@typescript-eslint/types/dist/ts-estree.js.map +1 -0
  581. package/node_modules/@typescript-eslint/types/package.json +84 -0
  582. package/node_modules/@typescript-eslint/typescript-estree/LICENSE +26 -0
  583. package/node_modules/@typescript-eslint/typescript-estree/README.md +383 -0
  584. package/node_modules/@typescript-eslint/typescript-estree/_ts3.4/dist/ast-converter.d.ts +9 -0
  585. package/node_modules/@typescript-eslint/typescript-estree/_ts3.4/dist/convert-comments.d.ts +11 -0
  586. package/node_modules/@typescript-eslint/typescript-estree/_ts3.4/dist/convert.d.ts +157 -0
  587. package/node_modules/@typescript-eslint/typescript-estree/_ts3.4/dist/create-program/WatchCompilerHostOfConfigFile.d.ts +13 -0
  588. package/node_modules/@typescript-eslint/typescript-estree/_ts3.4/dist/create-program/createDefaultProgram.d.ts +12 -0
  589. package/node_modules/@typescript-eslint/typescript-estree/_ts3.4/dist/create-program/createIsolatedProgram.d.ts +9 -0
  590. package/node_modules/@typescript-eslint/typescript-estree/_ts3.4/dist/create-program/createProjectProgram.d.ts +11 -0
  591. package/node_modules/@typescript-eslint/typescript-estree/_ts3.4/dist/create-program/createSourceFile.d.ts +5 -0
  592. package/node_modules/@typescript-eslint/typescript-estree/_ts3.4/dist/create-program/createWatchProgram.d.ts +19 -0
  593. package/node_modules/@typescript-eslint/typescript-estree/_ts3.4/dist/create-program/getScriptKind.d.ts +5 -0
  594. package/node_modules/@typescript-eslint/typescript-estree/_ts3.4/dist/create-program/shared.d.ts +22 -0
  595. package/node_modules/@typescript-eslint/typescript-estree/_ts3.4/dist/create-program/useProvidedPrograms.d.ts +13 -0
  596. package/node_modules/@typescript-eslint/typescript-estree/_ts3.4/dist/index.d.ts +10 -0
  597. package/node_modules/@typescript-eslint/typescript-estree/_ts3.4/dist/jsx/xhtml-entities.d.ts +2 -0
  598. package/node_modules/@typescript-eslint/typescript-estree/_ts3.4/dist/node-utils.d.ts +230 -0
  599. package/node_modules/@typescript-eslint/typescript-estree/_ts3.4/dist/parser-options.d.ts +188 -0
  600. package/node_modules/@typescript-eslint/typescript-estree/_ts3.4/dist/parser.d.ts +25 -0
  601. package/node_modules/@typescript-eslint/typescript-estree/_ts3.4/dist/semantic-or-syntactic-errors.d.ts +13 -0
  602. package/node_modules/@typescript-eslint/typescript-estree/_ts3.4/dist/simple-traverse.d.ts +9 -0
  603. package/node_modules/@typescript-eslint/typescript-estree/_ts3.4/dist/ts-estree/estree-to-ts-node-types.d.ts +175 -0
  604. package/node_modules/@typescript-eslint/typescript-estree/_ts3.4/dist/ts-estree/index.d.ts +4 -0
  605. package/node_modules/@typescript-eslint/typescript-estree/_ts3.4/dist/ts-estree/ts-nodes.d.ts +18 -0
  606. package/node_modules/@typescript-eslint/typescript-estree/_ts3.4/dist/version-check.d.ts +3 -0
  607. package/node_modules/@typescript-eslint/typescript-estree/dist/ast-converter.d.ts +9 -0
  608. package/node_modules/@typescript-eslint/typescript-estree/dist/ast-converter.d.ts.map +1 -0
  609. package/node_modules/@typescript-eslint/typescript-estree/dist/ast-converter.js +60 -0
  610. package/node_modules/@typescript-eslint/typescript-estree/dist/ast-converter.js.map +1 -0
  611. package/node_modules/@typescript-eslint/typescript-estree/dist/convert-comments.d.ts +11 -0
  612. package/node_modules/@typescript-eslint/typescript-estree/dist/convert-comments.d.ts.map +1 -0
  613. package/node_modules/@typescript-eslint/typescript-estree/dist/convert-comments.js +63 -0
  614. package/node_modules/@typescript-eslint/typescript-estree/dist/convert-comments.js.map +1 -0
  615. package/node_modules/@typescript-eslint/typescript-estree/dist/convert.d.ts +157 -0
  616. package/node_modules/@typescript-eslint/typescript-estree/dist/convert.d.ts.map +1 -0
  617. package/node_modules/@typescript-eslint/typescript-estree/dist/convert.js +2323 -0
  618. package/node_modules/@typescript-eslint/typescript-estree/dist/convert.js.map +1 -0
  619. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/WatchCompilerHostOfConfigFile.d.ts +13 -0
  620. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/WatchCompilerHostOfConfigFile.d.ts.map +1 -0
  621. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/WatchCompilerHostOfConfigFile.js +6 -0
  622. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/WatchCompilerHostOfConfigFile.js.map +1 -0
  623. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/createDefaultProgram.d.ts +12 -0
  624. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/createDefaultProgram.d.ts.map +1 -0
  625. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/createDefaultProgram.js +66 -0
  626. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/createDefaultProgram.js.map +1 -0
  627. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/createIsolatedProgram.d.ts +9 -0
  628. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/createIsolatedProgram.d.ts.map +1 -0
  629. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/createIsolatedProgram.js +83 -0
  630. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/createIsolatedProgram.js.map +1 -0
  631. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/createProjectProgram.d.ts +11 -0
  632. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/createProjectProgram.d.ts.map +1 -0
  633. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/createProjectProgram.js +94 -0
  634. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/createProjectProgram.js.map +1 -0
  635. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/createSourceFile.d.ts +5 -0
  636. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/createSourceFile.d.ts.map +1 -0
  637. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/createSourceFile.js +40 -0
  638. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/createSourceFile.js.map +1 -0
  639. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/createWatchProgram.d.ts +19 -0
  640. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/createWatchProgram.d.ts.map +1 -0
  641. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/createWatchProgram.js +414 -0
  642. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/createWatchProgram.js.map +1 -0
  643. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/getScriptKind.d.ts +5 -0
  644. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/getScriptKind.d.ts.map +1 -0
  645. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/getScriptKind.js +72 -0
  646. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/getScriptKind.js.map +1 -0
  647. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/shared.d.ts +22 -0
  648. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/shared.d.ts.map +1 -0
  649. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/shared.js +116 -0
  650. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/shared.js.map +1 -0
  651. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/useProvidedPrograms.d.ts +13 -0
  652. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/useProvidedPrograms.d.ts.map +1 -0
  653. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/useProvidedPrograms.js +93 -0
  654. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/useProvidedPrograms.js.map +1 -0
  655. package/node_modules/@typescript-eslint/typescript-estree/dist/index.d.ts +10 -0
  656. package/node_modules/@typescript-eslint/typescript-estree/dist/index.d.ts.map +1 -0
  657. package/node_modules/@typescript-eslint/typescript-estree/dist/index.js +37 -0
  658. package/node_modules/@typescript-eslint/typescript-estree/dist/index.js.map +1 -0
  659. package/node_modules/@typescript-eslint/typescript-estree/dist/jsx/xhtml-entities.d.ts +2 -0
  660. package/node_modules/@typescript-eslint/typescript-estree/dist/jsx/xhtml-entities.d.ts.map +1 -0
  661. package/node_modules/@typescript-eslint/typescript-estree/dist/jsx/xhtml-entities.js +259 -0
  662. package/node_modules/@typescript-eslint/typescript-estree/dist/jsx/xhtml-entities.js.map +1 -0
  663. package/node_modules/@typescript-eslint/typescript-estree/dist/node-utils.d.ts +227 -0
  664. package/node_modules/@typescript-eslint/typescript-estree/dist/node-utils.d.ts.map +1 -0
  665. package/node_modules/@typescript-eslint/typescript-estree/dist/node-utils.js +582 -0
  666. package/node_modules/@typescript-eslint/typescript-estree/dist/node-utils.js.map +1 -0
  667. package/node_modules/@typescript-eslint/typescript-estree/dist/parser-options.d.ts +188 -0
  668. package/node_modules/@typescript-eslint/typescript-estree/dist/parser-options.d.ts.map +1 -0
  669. package/node_modules/@typescript-eslint/typescript-estree/dist/parser-options.js +3 -0
  670. package/node_modules/@typescript-eslint/typescript-estree/dist/parser-options.js.map +1 -0
  671. package/node_modules/@typescript-eslint/typescript-estree/dist/parser.d.ts +25 -0
  672. package/node_modules/@typescript-eslint/typescript-estree/dist/parser.d.ts.map +1 -0
  673. package/node_modules/@typescript-eslint/typescript-estree/dist/parser.js +529 -0
  674. package/node_modules/@typescript-eslint/typescript-estree/dist/parser.js.map +1 -0
  675. package/node_modules/@typescript-eslint/typescript-estree/dist/semantic-or-syntactic-errors.d.ts +13 -0
  676. package/node_modules/@typescript-eslint/typescript-estree/dist/semantic-or-syntactic-errors.d.ts.map +1 -0
  677. package/node_modules/@typescript-eslint/typescript-estree/dist/semantic-or-syntactic-errors.js +93 -0
  678. package/node_modules/@typescript-eslint/typescript-estree/dist/semantic-or-syntactic-errors.js.map +1 -0
  679. package/node_modules/@typescript-eslint/typescript-estree/dist/simple-traverse.d.ts +9 -0
  680. package/node_modules/@typescript-eslint/typescript-estree/dist/simple-traverse.d.ts.map +1 -0
  681. package/node_modules/@typescript-eslint/typescript-estree/dist/simple-traverse.js +54 -0
  682. package/node_modules/@typescript-eslint/typescript-estree/dist/simple-traverse.js.map +1 -0
  683. package/node_modules/@typescript-eslint/typescript-estree/dist/ts-estree/estree-to-ts-node-types.d.ts +175 -0
  684. package/node_modules/@typescript-eslint/typescript-estree/dist/ts-estree/estree-to-ts-node-types.d.ts.map +1 -0
  685. package/node_modules/@typescript-eslint/typescript-estree/dist/ts-estree/estree-to-ts-node-types.js +4 -0
  686. package/node_modules/@typescript-eslint/typescript-estree/dist/ts-estree/estree-to-ts-node-types.js.map +1 -0
  687. package/node_modules/@typescript-eslint/typescript-estree/dist/ts-estree/index.d.ts +4 -0
  688. package/node_modules/@typescript-eslint/typescript-estree/dist/ts-estree/index.d.ts.map +1 -0
  689. package/node_modules/@typescript-eslint/typescript-estree/dist/ts-estree/index.js +25 -0
  690. package/node_modules/@typescript-eslint/typescript-estree/dist/ts-estree/index.js.map +1 -0
  691. package/node_modules/@typescript-eslint/typescript-estree/dist/ts-estree/ts-nodes.d.ts +18 -0
  692. package/node_modules/@typescript-eslint/typescript-estree/dist/ts-estree/ts-nodes.d.ts.map +1 -0
  693. package/node_modules/@typescript-eslint/typescript-estree/dist/ts-estree/ts-nodes.js +3 -0
  694. package/node_modules/@typescript-eslint/typescript-estree/dist/ts-estree/ts-nodes.js.map +1 -0
  695. package/node_modules/@typescript-eslint/typescript-estree/dist/version-check.d.ts +3 -0
  696. package/node_modules/@typescript-eslint/typescript-estree/dist/version-check.d.ts.map +1 -0
  697. package/node_modules/@typescript-eslint/typescript-estree/dist/version-check.js +46 -0
  698. package/node_modules/@typescript-eslint/typescript-estree/dist/version-check.js.map +1 -0
  699. package/node_modules/@typescript-eslint/typescript-estree/node_modules/globby/gitignore.js +120 -0
  700. package/node_modules/@typescript-eslint/typescript-estree/node_modules/globby/index.d.ts +186 -0
  701. package/node_modules/@typescript-eslint/typescript-estree/node_modules/globby/index.js +181 -0
  702. package/node_modules/@typescript-eslint/typescript-estree/node_modules/globby/license +9 -0
  703. package/node_modules/@typescript-eslint/typescript-estree/node_modules/globby/package.json +82 -0
  704. package/node_modules/@typescript-eslint/typescript-estree/node_modules/globby/readme.md +170 -0
  705. package/node_modules/@typescript-eslint/typescript-estree/node_modules/globby/stream-utils.js +46 -0
  706. package/node_modules/@typescript-eslint/typescript-estree/package.json +86 -0
  707. package/node_modules/@typescript-eslint/visitor-keys/LICENSE +21 -0
  708. package/node_modules/@typescript-eslint/visitor-keys/README.md +13 -0
  709. package/node_modules/@typescript-eslint/visitor-keys/_ts3.4/dist/get-keys.d.ts +4 -0
  710. package/node_modules/@typescript-eslint/visitor-keys/_ts3.4/dist/index.d.ts +3 -0
  711. package/node_modules/@typescript-eslint/visitor-keys/_ts3.4/dist/visitor-keys.d.ts +6 -0
  712. package/node_modules/@typescript-eslint/visitor-keys/dist/get-keys.d.ts +4 -0
  713. package/node_modules/@typescript-eslint/visitor-keys/dist/get-keys.d.ts.map +1 -0
  714. package/node_modules/@typescript-eslint/visitor-keys/dist/get-keys.js +7 -0
  715. package/node_modules/@typescript-eslint/visitor-keys/dist/get-keys.js.map +1 -0
  716. package/node_modules/@typescript-eslint/visitor-keys/dist/index.d.ts +3 -0
  717. package/node_modules/@typescript-eslint/visitor-keys/dist/index.d.ts.map +1 -0
  718. package/node_modules/@typescript-eslint/visitor-keys/dist/index.js +8 -0
  719. package/node_modules/@typescript-eslint/visitor-keys/dist/index.js.map +1 -0
  720. package/node_modules/@typescript-eslint/visitor-keys/dist/visitor-keys.d.ts +6 -0
  721. package/node_modules/@typescript-eslint/visitor-keys/dist/visitor-keys.d.ts.map +1 -0
  722. package/node_modules/@typescript-eslint/visitor-keys/dist/visitor-keys.js +160 -0
  723. package/node_modules/@typescript-eslint/visitor-keys/dist/visitor-keys.js.map +1 -0
  724. package/node_modules/@typescript-eslint/visitor-keys/package.json +60 -0
  725. package/package.json +19 -19
@@ -0,0 +1,582 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
15
+ }) : function(o, v) {
16
+ o["default"] = v;
17
+ });
18
+ var __importStar = (this && this.__importStar) || function (mod) {
19
+ if (mod && mod.__esModule) return mod;
20
+ var result = {};
21
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
22
+ __setModuleDefault(result, mod);
23
+ return result;
24
+ };
25
+ Object.defineProperty(exports, "__esModule", { value: true });
26
+ exports.isThisInTypeQuery = exports.isThisIdentifier = exports.identifierIsThisKeyword = exports.firstDefined = exports.nodeHasTokens = exports.createError = exports.TSError = exports.convertTokens = exports.convertToken = exports.getTokenType = exports.isChildUnwrappableOptionalChain = exports.isChainExpression = exports.isOptional = exports.isComputedProperty = exports.unescapeStringLiteralText = exports.hasJSXAncestor = exports.findFirstMatchingAncestor = exports.findNextToken = exports.getTSNodeAccessibility = exports.getDeclarationKind = exports.isJSXToken = exports.isToken = exports.getRange = exports.canContainDirective = exports.getLocFor = exports.getLineAndCharacterFor = exports.getBinaryExpressionType = exports.isJSDocComment = exports.isComment = exports.isComma = exports.getLastModifier = exports.hasModifier = exports.isESTreeClassMember = exports.getTextForTokenKind = exports.isLogicalOperator = exports.isAssignmentOperator = void 0;
27
+ const ts = __importStar(require("typescript"));
28
+ const ts_estree_1 = require("./ts-estree");
29
+ const xhtml_entities_1 = require("./jsx/xhtml-entities");
30
+ const SyntaxKind = ts.SyntaxKind;
31
+ const LOGICAL_OPERATORS = [
32
+ SyntaxKind.BarBarToken,
33
+ SyntaxKind.AmpersandAmpersandToken,
34
+ SyntaxKind.QuestionQuestionToken,
35
+ ];
36
+ /**
37
+ * Returns true if the given ts.Token is the assignment operator
38
+ * @param operator the operator token
39
+ * @returns is assignment
40
+ */
41
+ function isAssignmentOperator(operator) {
42
+ return (operator.kind >= SyntaxKind.FirstAssignment &&
43
+ operator.kind <= SyntaxKind.LastAssignment);
44
+ }
45
+ exports.isAssignmentOperator = isAssignmentOperator;
46
+ /**
47
+ * Returns true if the given ts.Token is a logical operator
48
+ * @param operator the operator token
49
+ * @returns is a logical operator
50
+ */
51
+ function isLogicalOperator(operator) {
52
+ return LOGICAL_OPERATORS.includes(operator.kind);
53
+ }
54
+ exports.isLogicalOperator = isLogicalOperator;
55
+ /**
56
+ * Returns the string form of the given TSToken SyntaxKind
57
+ * @param kind the token's SyntaxKind
58
+ * @returns the token applicable token as a string
59
+ */
60
+ function getTextForTokenKind(kind) {
61
+ return ts.tokenToString(kind);
62
+ }
63
+ exports.getTextForTokenKind = getTextForTokenKind;
64
+ /**
65
+ * Returns true if the given ts.Node is a valid ESTree class member
66
+ * @param node TypeScript AST node
67
+ * @returns is valid ESTree class member
68
+ */
69
+ function isESTreeClassMember(node) {
70
+ return node.kind !== SyntaxKind.SemicolonClassElement;
71
+ }
72
+ exports.isESTreeClassMember = isESTreeClassMember;
73
+ /**
74
+ * Checks if a ts.Node has a modifier
75
+ * @param modifierKind TypeScript SyntaxKind modifier
76
+ * @param node TypeScript AST node
77
+ * @returns has the modifier specified
78
+ */
79
+ function hasModifier(modifierKind, node) {
80
+ return (!!node.modifiers &&
81
+ !!node.modifiers.length &&
82
+ node.modifiers.some(modifier => modifier.kind === modifierKind));
83
+ }
84
+ exports.hasModifier = hasModifier;
85
+ /**
86
+ * Get last last modifier in ast
87
+ * @param node TypeScript AST node
88
+ * @returns returns last modifier if present or null
89
+ */
90
+ function getLastModifier(node) {
91
+ return ((!!node.modifiers &&
92
+ !!node.modifiers.length &&
93
+ node.modifiers[node.modifiers.length - 1]) ||
94
+ null);
95
+ }
96
+ exports.getLastModifier = getLastModifier;
97
+ /**
98
+ * Returns true if the given ts.Token is a comma
99
+ * @param token the TypeScript token
100
+ * @returns is comma
101
+ */
102
+ function isComma(token) {
103
+ return token.kind === SyntaxKind.CommaToken;
104
+ }
105
+ exports.isComma = isComma;
106
+ /**
107
+ * Returns true if the given ts.Node is a comment
108
+ * @param node the TypeScript node
109
+ * @returns is comment
110
+ */
111
+ function isComment(node) {
112
+ return (node.kind === SyntaxKind.SingleLineCommentTrivia ||
113
+ node.kind === SyntaxKind.MultiLineCommentTrivia);
114
+ }
115
+ exports.isComment = isComment;
116
+ /**
117
+ * Returns true if the given ts.Node is a JSDoc comment
118
+ * @param node the TypeScript node
119
+ * @returns is JSDoc comment
120
+ */
121
+ function isJSDocComment(node) {
122
+ return node.kind === SyntaxKind.JSDocComment;
123
+ }
124
+ exports.isJSDocComment = isJSDocComment;
125
+ /**
126
+ * Returns the binary expression type of the given ts.Token
127
+ * @param operator the operator token
128
+ * @returns the binary expression type
129
+ */
130
+ function getBinaryExpressionType(operator) {
131
+ if (isAssignmentOperator(operator)) {
132
+ return ts_estree_1.AST_NODE_TYPES.AssignmentExpression;
133
+ }
134
+ else if (isLogicalOperator(operator)) {
135
+ return ts_estree_1.AST_NODE_TYPES.LogicalExpression;
136
+ }
137
+ return ts_estree_1.AST_NODE_TYPES.BinaryExpression;
138
+ }
139
+ exports.getBinaryExpressionType = getBinaryExpressionType;
140
+ /**
141
+ * Returns line and column data for the given positions,
142
+ * @param pos position to check
143
+ * @param ast the AST object
144
+ * @returns line and column
145
+ */
146
+ function getLineAndCharacterFor(pos, ast) {
147
+ const loc = ast.getLineAndCharacterOfPosition(pos);
148
+ return {
149
+ line: loc.line + 1,
150
+ column: loc.character,
151
+ };
152
+ }
153
+ exports.getLineAndCharacterFor = getLineAndCharacterFor;
154
+ /**
155
+ * Returns line and column data for the given start and end positions,
156
+ * for the given AST
157
+ * @param start start data
158
+ * @param end end data
159
+ * @param ast the AST object
160
+ * @returns the loc data
161
+ */
162
+ function getLocFor(start, end, ast) {
163
+ return {
164
+ start: getLineAndCharacterFor(start, ast),
165
+ end: getLineAndCharacterFor(end, ast),
166
+ };
167
+ }
168
+ exports.getLocFor = getLocFor;
169
+ /**
170
+ * Check whatever node can contain directive
171
+ * @param node
172
+ * @returns returns true if node can contain directive
173
+ */
174
+ function canContainDirective(node) {
175
+ if (node.kind === ts.SyntaxKind.Block) {
176
+ switch (node.parent.kind) {
177
+ case ts.SyntaxKind.Constructor:
178
+ case ts.SyntaxKind.GetAccessor:
179
+ case ts.SyntaxKind.SetAccessor:
180
+ case ts.SyntaxKind.ArrowFunction:
181
+ case ts.SyntaxKind.FunctionExpression:
182
+ case ts.SyntaxKind.FunctionDeclaration:
183
+ case ts.SyntaxKind.MethodDeclaration:
184
+ return true;
185
+ default:
186
+ return false;
187
+ }
188
+ }
189
+ return true;
190
+ }
191
+ exports.canContainDirective = canContainDirective;
192
+ /**
193
+ * Returns range for the given ts.Node
194
+ * @param node the ts.Node or ts.Token
195
+ * @param ast the AST object
196
+ * @returns the range data
197
+ */
198
+ function getRange(node, ast) {
199
+ return [node.getStart(ast), node.getEnd()];
200
+ }
201
+ exports.getRange = getRange;
202
+ /**
203
+ * Returns true if a given ts.Node is a token
204
+ * @param node the ts.Node
205
+ * @returns is a token
206
+ */
207
+ function isToken(node) {
208
+ return (node.kind >= SyntaxKind.FirstToken && node.kind <= SyntaxKind.LastToken);
209
+ }
210
+ exports.isToken = isToken;
211
+ /**
212
+ * Returns true if a given ts.Node is a JSX token
213
+ * @param node ts.Node to be checked
214
+ * @returns is a JSX token
215
+ */
216
+ function isJSXToken(node) {
217
+ return (node.kind >= SyntaxKind.JsxElement && node.kind <= SyntaxKind.JsxAttribute);
218
+ }
219
+ exports.isJSXToken = isJSXToken;
220
+ /**
221
+ * Returns the declaration kind of the given ts.Node
222
+ * @param node TypeScript AST node
223
+ * @returns declaration kind
224
+ */
225
+ function getDeclarationKind(node) {
226
+ if (node.flags & ts.NodeFlags.Let) {
227
+ return 'let';
228
+ }
229
+ if (node.flags & ts.NodeFlags.Const) {
230
+ return 'const';
231
+ }
232
+ return 'var';
233
+ }
234
+ exports.getDeclarationKind = getDeclarationKind;
235
+ /**
236
+ * Gets a ts.Node's accessibility level
237
+ * @param node The ts.Node
238
+ * @returns accessibility "public", "protected", "private", or null
239
+ */
240
+ function getTSNodeAccessibility(node) {
241
+ const modifiers = node.modifiers;
242
+ if (!modifiers) {
243
+ return null;
244
+ }
245
+ for (const modifier of modifiers) {
246
+ switch (modifier.kind) {
247
+ case SyntaxKind.PublicKeyword:
248
+ return 'public';
249
+ case SyntaxKind.ProtectedKeyword:
250
+ return 'protected';
251
+ case SyntaxKind.PrivateKeyword:
252
+ return 'private';
253
+ default:
254
+ break;
255
+ }
256
+ }
257
+ return null;
258
+ }
259
+ exports.getTSNodeAccessibility = getTSNodeAccessibility;
260
+ /**
261
+ * Finds the next token based on the previous one and its parent
262
+ * Had to copy this from TS instead of using TS's version because theirs doesn't pass the ast to getChildren
263
+ * @param previousToken The previous TSToken
264
+ * @param parent The parent TSNode
265
+ * @param ast The TS AST
266
+ * @returns the next TSToken
267
+ */
268
+ function findNextToken(previousToken, parent, ast) {
269
+ return find(parent);
270
+ function find(n) {
271
+ if (ts.isToken(n) && n.pos === previousToken.end) {
272
+ // this is token that starts at the end of previous token - return it
273
+ return n;
274
+ }
275
+ return firstDefined(n.getChildren(ast), (child) => {
276
+ const shouldDiveInChildNode =
277
+ // previous token is enclosed somewhere in the child
278
+ (child.pos <= previousToken.pos && child.end > previousToken.end) ||
279
+ // previous token ends exactly at the beginning of child
280
+ child.pos === previousToken.end;
281
+ return shouldDiveInChildNode && nodeHasTokens(child, ast)
282
+ ? find(child)
283
+ : undefined;
284
+ });
285
+ }
286
+ }
287
+ exports.findNextToken = findNextToken;
288
+ /**
289
+ * Find the first matching ancestor based on the given predicate function.
290
+ * @param node The current ts.Node
291
+ * @param predicate The predicate function to apply to each checked ancestor
292
+ * @returns a matching parent ts.Node
293
+ */
294
+ function findFirstMatchingAncestor(node, predicate) {
295
+ while (node) {
296
+ if (predicate(node)) {
297
+ return node;
298
+ }
299
+ node = node.parent;
300
+ }
301
+ return undefined;
302
+ }
303
+ exports.findFirstMatchingAncestor = findFirstMatchingAncestor;
304
+ /**
305
+ * Returns true if a given ts.Node has a JSX token within its hierarchy
306
+ * @param node ts.Node to be checked
307
+ * @returns has JSX ancestor
308
+ */
309
+ function hasJSXAncestor(node) {
310
+ return !!findFirstMatchingAncestor(node, isJSXToken);
311
+ }
312
+ exports.hasJSXAncestor = hasJSXAncestor;
313
+ /**
314
+ * Unescape the text content of string literals, e.g. &amp; -> &
315
+ * @param text The escaped string literal text.
316
+ * @returns The unescaped string literal text.
317
+ */
318
+ function unescapeStringLiteralText(text) {
319
+ return text.replace(/&(?:#\d+|#x[\da-fA-F]+|[0-9a-zA-Z]+);/g, entity => {
320
+ const item = entity.slice(1, -1);
321
+ if (item[0] === '#') {
322
+ const codePoint = item[1] === 'x'
323
+ ? parseInt(item.slice(2), 16)
324
+ : parseInt(item.slice(1), 10);
325
+ return codePoint > 0x10ffff // RangeError: Invalid code point
326
+ ? entity
327
+ : String.fromCodePoint(codePoint);
328
+ }
329
+ return xhtml_entities_1.xhtmlEntities[item] || entity;
330
+ });
331
+ }
332
+ exports.unescapeStringLiteralText = unescapeStringLiteralText;
333
+ /**
334
+ * Returns true if a given ts.Node is a computed property
335
+ * @param node ts.Node to be checked
336
+ * @returns is Computed Property
337
+ */
338
+ function isComputedProperty(node) {
339
+ return node.kind === SyntaxKind.ComputedPropertyName;
340
+ }
341
+ exports.isComputedProperty = isComputedProperty;
342
+ /**
343
+ * Returns true if a given ts.Node is optional (has QuestionToken)
344
+ * @param node ts.Node to be checked
345
+ * @returns is Optional
346
+ */
347
+ function isOptional(node) {
348
+ return node.questionToken
349
+ ? node.questionToken.kind === SyntaxKind.QuestionToken
350
+ : false;
351
+ }
352
+ exports.isOptional = isOptional;
353
+ /**
354
+ * Returns true if the node is an optional chain node
355
+ */
356
+ function isChainExpression(node) {
357
+ return node.type === ts_estree_1.AST_NODE_TYPES.ChainExpression;
358
+ }
359
+ exports.isChainExpression = isChainExpression;
360
+ /**
361
+ * Returns true of the child of property access expression is an optional chain
362
+ */
363
+ function isChildUnwrappableOptionalChain(node, child) {
364
+ return (isChainExpression(child) &&
365
+ // (x?.y).z is semantically different, and as such .z is no longer optional
366
+ node.expression.kind !== ts.SyntaxKind.ParenthesizedExpression);
367
+ }
368
+ exports.isChildUnwrappableOptionalChain = isChildUnwrappableOptionalChain;
369
+ /**
370
+ * Returns the type of a given ts.Token
371
+ * @param token the ts.Token
372
+ * @returns the token type
373
+ */
374
+ function getTokenType(token) {
375
+ if ('originalKeywordKind' in token && token.originalKeywordKind) {
376
+ if (token.originalKeywordKind === SyntaxKind.NullKeyword) {
377
+ return ts_estree_1.AST_TOKEN_TYPES.Null;
378
+ }
379
+ else if (token.originalKeywordKind >= SyntaxKind.FirstFutureReservedWord &&
380
+ token.originalKeywordKind <= SyntaxKind.LastKeyword) {
381
+ return ts_estree_1.AST_TOKEN_TYPES.Identifier;
382
+ }
383
+ return ts_estree_1.AST_TOKEN_TYPES.Keyword;
384
+ }
385
+ if (token.kind >= SyntaxKind.FirstKeyword &&
386
+ token.kind <= SyntaxKind.LastFutureReservedWord) {
387
+ if (token.kind === SyntaxKind.FalseKeyword ||
388
+ token.kind === SyntaxKind.TrueKeyword) {
389
+ return ts_estree_1.AST_TOKEN_TYPES.Boolean;
390
+ }
391
+ return ts_estree_1.AST_TOKEN_TYPES.Keyword;
392
+ }
393
+ if (token.kind >= SyntaxKind.FirstPunctuation &&
394
+ token.kind <= SyntaxKind.LastPunctuation) {
395
+ return ts_estree_1.AST_TOKEN_TYPES.Punctuator;
396
+ }
397
+ if (token.kind >= SyntaxKind.NoSubstitutionTemplateLiteral &&
398
+ token.kind <= SyntaxKind.TemplateTail) {
399
+ return ts_estree_1.AST_TOKEN_TYPES.Template;
400
+ }
401
+ switch (token.kind) {
402
+ case SyntaxKind.NumericLiteral:
403
+ return ts_estree_1.AST_TOKEN_TYPES.Numeric;
404
+ case SyntaxKind.JsxText:
405
+ return ts_estree_1.AST_TOKEN_TYPES.JSXText;
406
+ case SyntaxKind.StringLiteral:
407
+ // A TypeScript-StringLiteral token with a TypeScript-JsxAttribute or TypeScript-JsxElement parent,
408
+ // must actually be an ESTree-JSXText token
409
+ if (token.parent &&
410
+ (token.parent.kind === SyntaxKind.JsxAttribute ||
411
+ token.parent.kind === SyntaxKind.JsxElement)) {
412
+ return ts_estree_1.AST_TOKEN_TYPES.JSXText;
413
+ }
414
+ return ts_estree_1.AST_TOKEN_TYPES.String;
415
+ case SyntaxKind.RegularExpressionLiteral:
416
+ return ts_estree_1.AST_TOKEN_TYPES.RegularExpression;
417
+ case SyntaxKind.Identifier:
418
+ case SyntaxKind.ConstructorKeyword:
419
+ case SyntaxKind.GetKeyword:
420
+ case SyntaxKind.SetKeyword:
421
+ // intentional fallthrough
422
+ default:
423
+ }
424
+ // Some JSX tokens have to be determined based on their parent
425
+ if (token.parent && token.kind === SyntaxKind.Identifier) {
426
+ if (isJSXToken(token.parent)) {
427
+ return ts_estree_1.AST_TOKEN_TYPES.JSXIdentifier;
428
+ }
429
+ if (token.parent.kind === SyntaxKind.PropertyAccessExpression &&
430
+ hasJSXAncestor(token)) {
431
+ return ts_estree_1.AST_TOKEN_TYPES.JSXIdentifier;
432
+ }
433
+ }
434
+ return ts_estree_1.AST_TOKEN_TYPES.Identifier;
435
+ }
436
+ exports.getTokenType = getTokenType;
437
+ /**
438
+ * Extends and formats a given ts.Token, for a given AST
439
+ * @param token the ts.Token
440
+ * @param ast the AST object
441
+ * @returns the converted Token
442
+ */
443
+ function convertToken(token, ast) {
444
+ const start = token.kind === SyntaxKind.JsxText
445
+ ? token.getFullStart()
446
+ : token.getStart(ast);
447
+ const end = token.getEnd();
448
+ const value = ast.text.slice(start, end);
449
+ const tokenType = getTokenType(token);
450
+ if (tokenType === ts_estree_1.AST_TOKEN_TYPES.RegularExpression) {
451
+ return {
452
+ type: tokenType,
453
+ value,
454
+ range: [start, end],
455
+ loc: getLocFor(start, end, ast),
456
+ regex: {
457
+ pattern: value.slice(1, value.lastIndexOf('/')),
458
+ flags: value.slice(value.lastIndexOf('/') + 1),
459
+ },
460
+ };
461
+ }
462
+ else {
463
+ // @ts-expect-error TS is complaining about `value` not being the correct
464
+ // type but it is
465
+ return {
466
+ type: tokenType,
467
+ value,
468
+ range: [start, end],
469
+ loc: getLocFor(start, end, ast),
470
+ };
471
+ }
472
+ }
473
+ exports.convertToken = convertToken;
474
+ /**
475
+ * Converts all tokens for the given AST
476
+ * @param ast the AST object
477
+ * @returns the converted Tokens
478
+ */
479
+ function convertTokens(ast) {
480
+ const result = [];
481
+ /**
482
+ * @param node the ts.Node
483
+ */
484
+ function walk(node) {
485
+ // TypeScript generates tokens for types in JSDoc blocks. Comment tokens
486
+ // and their children should not be walked or added to the resulting tokens list.
487
+ if (isComment(node) || isJSDocComment(node)) {
488
+ return;
489
+ }
490
+ if (isToken(node) && node.kind !== SyntaxKind.EndOfFileToken) {
491
+ const converted = convertToken(node, ast);
492
+ if (converted) {
493
+ result.push(converted);
494
+ }
495
+ }
496
+ else {
497
+ node.getChildren(ast).forEach(walk);
498
+ }
499
+ }
500
+ walk(ast);
501
+ return result;
502
+ }
503
+ exports.convertTokens = convertTokens;
504
+ class TSError extends Error {
505
+ constructor(message, fileName, index, lineNumber, column) {
506
+ super(message);
507
+ this.fileName = fileName;
508
+ this.index = index;
509
+ this.lineNumber = lineNumber;
510
+ this.column = column;
511
+ Object.defineProperty(this, 'name', {
512
+ value: new.target.name,
513
+ enumerable: false,
514
+ configurable: true,
515
+ });
516
+ }
517
+ }
518
+ exports.TSError = TSError;
519
+ /**
520
+ * @param ast the AST object
521
+ * @param start the index at which the error starts
522
+ * @param message the error message
523
+ * @returns converted error object
524
+ */
525
+ function createError(ast, start, message) {
526
+ const loc = ast.getLineAndCharacterOfPosition(start);
527
+ return new TSError(message, ast.fileName, start, loc.line + 1, loc.character);
528
+ }
529
+ exports.createError = createError;
530
+ /**
531
+ * @param n the TSNode
532
+ * @param ast the TS AST
533
+ */
534
+ function nodeHasTokens(n, ast) {
535
+ // If we have a token or node that has a non-zero width, it must have tokens.
536
+ // Note: getWidth() does not take trivia into account.
537
+ return n.kind === SyntaxKind.EndOfFileToken
538
+ ? !!n.jsDoc
539
+ : n.getWidth(ast) !== 0;
540
+ }
541
+ exports.nodeHasTokens = nodeHasTokens;
542
+ /**
543
+ * Like `forEach`, but suitable for use with numbers and strings (which may be falsy).
544
+ * @template T
545
+ * @template U
546
+ * @param array
547
+ * @param callback
548
+ */
549
+ function firstDefined(array, callback) {
550
+ if (array === undefined) {
551
+ return undefined;
552
+ }
553
+ for (let i = 0; i < array.length; i++) {
554
+ const result = callback(array[i], i);
555
+ if (result !== undefined) {
556
+ return result;
557
+ }
558
+ }
559
+ return undefined;
560
+ }
561
+ exports.firstDefined = firstDefined;
562
+ function identifierIsThisKeyword(id) {
563
+ return id.originalKeywordKind === SyntaxKind.ThisKeyword;
564
+ }
565
+ exports.identifierIsThisKeyword = identifierIsThisKeyword;
566
+ function isThisIdentifier(node) {
567
+ return (!!node &&
568
+ node.kind === SyntaxKind.Identifier &&
569
+ identifierIsThisKeyword(node));
570
+ }
571
+ exports.isThisIdentifier = isThisIdentifier;
572
+ function isThisInTypeQuery(node) {
573
+ if (!isThisIdentifier(node)) {
574
+ return false;
575
+ }
576
+ while (ts.isQualifiedName(node.parent) && node.parent.left === node) {
577
+ node = node.parent;
578
+ }
579
+ return node.parent.kind === SyntaxKind.TypeQuery;
580
+ }
581
+ exports.isThisInTypeQuery = isThisInTypeQuery;
582
+ //# sourceMappingURL=node-utils.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"node-utils.js","sourceRoot":"","sources":["../src/node-utils.ts"],"names":[],"mappings":"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"}