@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,175 @@
1
+ import { AST_NODE_TYPES, TSESTree } from '@typescript-eslint/types';
2
+ import * as ts from 'typescript';
3
+ import { TSNode } from './ts-nodes';
4
+ export interface EstreeToTsNodeTypes {
5
+ [AST_NODE_TYPES.ArrayExpression]: ts.ArrayLiteralExpression;
6
+ [AST_NODE_TYPES.ArrayPattern]: ts.ArrayLiteralExpression | ts.ArrayBindingPattern;
7
+ [AST_NODE_TYPES.ArrowFunctionExpression]: ts.ArrowFunction;
8
+ [AST_NODE_TYPES.AssignmentExpression]: ts.BinaryExpression;
9
+ [AST_NODE_TYPES.AssignmentPattern]: ts.ShorthandPropertyAssignment | ts.BindingElement | ts.BinaryExpression | ts.ParameterDeclaration;
10
+ [AST_NODE_TYPES.AwaitExpression]: ts.AwaitExpression;
11
+ [AST_NODE_TYPES.BinaryExpression]: ts.BinaryExpression;
12
+ [AST_NODE_TYPES.BlockStatement]: ts.Block;
13
+ [AST_NODE_TYPES.BreakStatement]: ts.BreakStatement;
14
+ [AST_NODE_TYPES.CallExpression]: ts.CallExpression;
15
+ [AST_NODE_TYPES.CatchClause]: ts.CatchClause;
16
+ [AST_NODE_TYPES.ChainExpression]: ts.CallExpression | ts.PropertyAccessExpression | ts.ElementAccessExpression | ts.NonNullExpression;
17
+ [AST_NODE_TYPES.ClassBody]: ts.ClassDeclaration | ts.ClassExpression;
18
+ [AST_NODE_TYPES.ClassDeclaration]: ts.ClassDeclaration;
19
+ [AST_NODE_TYPES.ClassExpression]: ts.ClassExpression;
20
+ [AST_NODE_TYPES.PropertyDefinition]: ts.PropertyDeclaration;
21
+ [AST_NODE_TYPES.ConditionalExpression]: ts.ConditionalExpression;
22
+ [AST_NODE_TYPES.ContinueStatement]: ts.ContinueStatement;
23
+ [AST_NODE_TYPES.DebuggerStatement]: ts.DebuggerStatement;
24
+ [AST_NODE_TYPES.Decorator]: ts.Decorator;
25
+ [AST_NODE_TYPES.DoWhileStatement]: ts.DoStatement;
26
+ [AST_NODE_TYPES.EmptyStatement]: ts.EmptyStatement;
27
+ [AST_NODE_TYPES.ExportAllDeclaration]: ts.ExportDeclaration;
28
+ [AST_NODE_TYPES.ExportDefaultDeclaration]: ts.ExportAssignment | ts.FunctionDeclaration | ts.VariableStatement | ts.ClassDeclaration | ts.ClassExpression | ts.TypeAliasDeclaration | ts.InterfaceDeclaration | ts.EnumDeclaration | ts.ModuleDeclaration;
29
+ [AST_NODE_TYPES.ExportNamedDeclaration]: ts.ExportDeclaration | ts.FunctionDeclaration | ts.VariableStatement | ts.ClassDeclaration | ts.ClassExpression | ts.TypeAliasDeclaration | ts.InterfaceDeclaration | ts.EnumDeclaration | ts.ModuleDeclaration;
30
+ [AST_NODE_TYPES.ExportSpecifier]: ts.ExportSpecifier;
31
+ [AST_NODE_TYPES.ExpressionStatement]: ts.ExpressionStatement;
32
+ [AST_NODE_TYPES.ForInStatement]: ts.ForInStatement;
33
+ [AST_NODE_TYPES.ForOfStatement]: ts.ForOfStatement;
34
+ [AST_NODE_TYPES.ForStatement]: ts.ForStatement;
35
+ [AST_NODE_TYPES.FunctionDeclaration]: ts.FunctionDeclaration;
36
+ [AST_NODE_TYPES.FunctionExpression]: ts.FunctionExpression | ts.ConstructorDeclaration | ts.GetAccessorDeclaration | ts.SetAccessorDeclaration | ts.MethodDeclaration;
37
+ [AST_NODE_TYPES.Identifier]: ts.Identifier | ts.ConstructorDeclaration | ts.Token<ts.SyntaxKind.NewKeyword | ts.SyntaxKind.ImportKeyword>;
38
+ [AST_NODE_TYPES.PrivateIdentifier]: ts.PrivateIdentifier;
39
+ [AST_NODE_TYPES.IfStatement]: ts.IfStatement;
40
+ [AST_NODE_TYPES.ImportAttribute]: ts.AssertEntry;
41
+ [AST_NODE_TYPES.ImportDeclaration]: ts.ImportDeclaration;
42
+ [AST_NODE_TYPES.ImportDefaultSpecifier]: ts.ImportClause;
43
+ [AST_NODE_TYPES.ImportExpression]: ts.CallExpression;
44
+ [AST_NODE_TYPES.ImportNamespaceSpecifier]: ts.NamespaceImport;
45
+ [AST_NODE_TYPES.ImportSpecifier]: ts.ImportSpecifier;
46
+ [AST_NODE_TYPES.JSXAttribute]: ts.JsxAttribute;
47
+ [AST_NODE_TYPES.JSXClosingElement]: ts.JsxClosingElement;
48
+ [AST_NODE_TYPES.JSXClosingFragment]: ts.JsxClosingFragment;
49
+ [AST_NODE_TYPES.JSXElement]: ts.JsxElement | ts.JsxSelfClosingElement;
50
+ [AST_NODE_TYPES.JSXEmptyExpression]: ts.JsxExpression;
51
+ [AST_NODE_TYPES.JSXExpressionContainer]: ts.JsxExpression;
52
+ [AST_NODE_TYPES.JSXFragment]: ts.JsxFragment;
53
+ [AST_NODE_TYPES.JSXIdentifier]: ts.Identifier | ts.ThisExpression;
54
+ [AST_NODE_TYPES.JSXOpeningElement]: ts.JsxOpeningElement | ts.JsxSelfClosingElement;
55
+ [AST_NODE_TYPES.JSXOpeningFragment]: ts.JsxOpeningFragment;
56
+ [AST_NODE_TYPES.JSXSpreadAttribute]: ts.JsxSpreadAttribute;
57
+ [AST_NODE_TYPES.JSXSpreadChild]: ts.JsxExpression;
58
+ [AST_NODE_TYPES.JSXMemberExpression]: ts.PropertyAccessExpression;
59
+ [AST_NODE_TYPES.JSXNamespacedName]: ts.Identifier | ts.ThisExpression;
60
+ [AST_NODE_TYPES.JSXText]: ts.JsxText;
61
+ [AST_NODE_TYPES.LabeledStatement]: ts.LabeledStatement;
62
+ [AST_NODE_TYPES.Literal]: ts.StringLiteral | ts.NumericLiteral | ts.RegularExpressionLiteral | ts.NullLiteral | ts.BooleanLiteral | ts.BigIntLiteral;
63
+ [AST_NODE_TYPES.LogicalExpression]: ts.BinaryExpression;
64
+ [AST_NODE_TYPES.MemberExpression]: ts.PropertyAccessExpression | ts.ElementAccessExpression;
65
+ [AST_NODE_TYPES.MetaProperty]: ts.MetaProperty;
66
+ [AST_NODE_TYPES.MethodDefinition]: ts.GetAccessorDeclaration | ts.SetAccessorDeclaration | ts.MethodDeclaration | ts.ConstructorDeclaration;
67
+ [AST_NODE_TYPES.NewExpression]: ts.NewExpression;
68
+ [AST_NODE_TYPES.ObjectExpression]: ts.ObjectLiteralExpression;
69
+ [AST_NODE_TYPES.ObjectPattern]: ts.ObjectLiteralExpression | ts.ObjectBindingPattern;
70
+ [AST_NODE_TYPES.Program]: ts.SourceFile;
71
+ [AST_NODE_TYPES.Property]: ts.PropertyAssignment | ts.ShorthandPropertyAssignment | ts.GetAccessorDeclaration | ts.SetAccessorDeclaration | ts.MethodDeclaration | ts.BindingElement;
72
+ [AST_NODE_TYPES.RestElement]: ts.BindingElement | ts.SpreadAssignment | ts.SpreadElement | ts.ParameterDeclaration;
73
+ [AST_NODE_TYPES.ReturnStatement]: ts.ReturnStatement;
74
+ [AST_NODE_TYPES.SequenceExpression]: ts.BinaryExpression;
75
+ [AST_NODE_TYPES.SpreadElement]: ts.SpreadElement | ts.SpreadAssignment;
76
+ [AST_NODE_TYPES.StaticBlock]: ts.ClassStaticBlockDeclaration;
77
+ [AST_NODE_TYPES.Super]: ts.SuperExpression;
78
+ [AST_NODE_TYPES.SwitchCase]: ts.CaseClause | ts.DefaultClause;
79
+ [AST_NODE_TYPES.SwitchStatement]: ts.SwitchStatement;
80
+ [AST_NODE_TYPES.TaggedTemplateExpression]: ts.TaggedTemplateExpression;
81
+ [AST_NODE_TYPES.TemplateElement]: ts.NoSubstitutionTemplateLiteral | ts.TemplateHead | ts.TemplateMiddle | ts.TemplateTail;
82
+ [AST_NODE_TYPES.TemplateLiteral]: ts.NoSubstitutionTemplateLiteral | ts.TemplateExpression;
83
+ [AST_NODE_TYPES.ThisExpression]: ts.ThisExpression | ts.KeywordTypeNode | ts.Identifier;
84
+ [AST_NODE_TYPES.ThrowStatement]: ts.ThrowStatement;
85
+ [AST_NODE_TYPES.TryStatement]: ts.TryStatement;
86
+ [AST_NODE_TYPES.TSAbstractPropertyDefinition]: ts.PropertyDeclaration;
87
+ [AST_NODE_TYPES.TSAbstractMethodDefinition]: ts.GetAccessorDeclaration | ts.SetAccessorDeclaration | ts.MethodDeclaration | ts.ConstructorDeclaration;
88
+ [AST_NODE_TYPES.TSArrayType]: ts.ArrayTypeNode;
89
+ [AST_NODE_TYPES.TSAsExpression]: ts.AsExpression;
90
+ [AST_NODE_TYPES.TSCallSignatureDeclaration]: ts.CallSignatureDeclaration;
91
+ [AST_NODE_TYPES.TSClassImplements]: ts.ExpressionWithTypeArguments;
92
+ [AST_NODE_TYPES.TSConditionalType]: ts.ConditionalTypeNode;
93
+ [AST_NODE_TYPES.TSConstructorType]: ts.ConstructorTypeNode;
94
+ [AST_NODE_TYPES.TSConstructSignatureDeclaration]: ts.ConstructSignatureDeclaration;
95
+ [AST_NODE_TYPES.TSDeclareFunction]: ts.FunctionDeclaration;
96
+ [AST_NODE_TYPES.TSEnumDeclaration]: ts.EnumDeclaration;
97
+ [AST_NODE_TYPES.TSEnumMember]: ts.EnumMember;
98
+ [AST_NODE_TYPES.TSExportAssignment]: ts.ExportAssignment;
99
+ [AST_NODE_TYPES.TSExternalModuleReference]: ts.ExternalModuleReference;
100
+ [AST_NODE_TYPES.TSFunctionType]: ts.FunctionTypeNode;
101
+ [AST_NODE_TYPES.TSImportEqualsDeclaration]: ts.ImportEqualsDeclaration;
102
+ [AST_NODE_TYPES.TSImportType]: ts.ImportTypeNode;
103
+ [AST_NODE_TYPES.TSIndexedAccessType]: ts.IndexedAccessTypeNode;
104
+ [AST_NODE_TYPES.TSIndexSignature]: ts.IndexSignatureDeclaration;
105
+ [AST_NODE_TYPES.TSInferType]: ts.InferTypeNode;
106
+ [AST_NODE_TYPES.TSInterfaceDeclaration]: ts.InterfaceDeclaration;
107
+ [AST_NODE_TYPES.TSInterfaceBody]: ts.InterfaceDeclaration;
108
+ [AST_NODE_TYPES.TSInterfaceHeritage]: ts.ExpressionWithTypeArguments;
109
+ [AST_NODE_TYPES.TSIntersectionType]: ts.IntersectionTypeNode;
110
+ [AST_NODE_TYPES.TSInstantiationExpression]: ts.ExpressionWithTypeArguments;
111
+ [AST_NODE_TYPES.TSLiteralType]: ts.LiteralTypeNode;
112
+ [AST_NODE_TYPES.TSMappedType]: ts.MappedTypeNode;
113
+ [AST_NODE_TYPES.TSMethodSignature]: ts.MethodSignature | ts.GetAccessorDeclaration | ts.SetAccessorDeclaration;
114
+ [AST_NODE_TYPES.TSModuleBlock]: ts.ModuleBlock;
115
+ [AST_NODE_TYPES.TSModuleDeclaration]: ts.ModuleDeclaration;
116
+ [AST_NODE_TYPES.TSNamedTupleMember]: ts.NamedTupleMember;
117
+ [AST_NODE_TYPES.TSNamespaceExportDeclaration]: ts.NamespaceExportDeclaration;
118
+ [AST_NODE_TYPES.TSNonNullExpression]: ts.NonNullExpression;
119
+ [AST_NODE_TYPES.TSOptionalType]: ts.OptionalTypeNode;
120
+ [AST_NODE_TYPES.TSParameterProperty]: ts.ParameterDeclaration;
121
+ [AST_NODE_TYPES.TSPropertySignature]: ts.PropertySignature;
122
+ [AST_NODE_TYPES.TSQualifiedName]: ts.QualifiedName;
123
+ [AST_NODE_TYPES.TSRestType]: ts.RestTypeNode | ts.NamedTupleMember;
124
+ [AST_NODE_TYPES.TSThisType]: ts.ThisTypeNode;
125
+ [AST_NODE_TYPES.TSTupleType]: ts.TupleTypeNode;
126
+ [AST_NODE_TYPES.TSTemplateLiteralType]: ts.TemplateLiteralTypeNode;
127
+ [AST_NODE_TYPES.TSTypeAliasDeclaration]: ts.TypeAliasDeclaration;
128
+ [AST_NODE_TYPES.TSTypeAnnotation]: undefined;
129
+ [AST_NODE_TYPES.TSTypeAssertion]: ts.TypeAssertion;
130
+ [AST_NODE_TYPES.TSTypeLiteral]: ts.TypeLiteralNode;
131
+ [AST_NODE_TYPES.TSTypeOperator]: ts.TypeOperatorNode;
132
+ [AST_NODE_TYPES.TSTypeParameter]: ts.TypeParameterDeclaration;
133
+ [AST_NODE_TYPES.TSTypeParameterDeclaration]: undefined;
134
+ [AST_NODE_TYPES.TSTypeParameterInstantiation]: ts.TaggedTemplateExpression | ts.ImportTypeNode | ts.ExpressionWithTypeArguments | ts.TypeReferenceNode | ts.JsxOpeningElement | ts.JsxSelfClosingElement | ts.NewExpression | ts.CallExpression | ts.TypeQueryNode;
135
+ [AST_NODE_TYPES.TSTypePredicate]: ts.TypePredicateNode;
136
+ [AST_NODE_TYPES.TSTypeQuery]: ts.TypeQueryNode;
137
+ [AST_NODE_TYPES.TSTypeReference]: ts.TypeReferenceNode;
138
+ [AST_NODE_TYPES.TSUnionType]: ts.UnionTypeNode;
139
+ [AST_NODE_TYPES.UpdateExpression]: ts.PrefixUnaryExpression | ts.PostfixUnaryExpression;
140
+ [AST_NODE_TYPES.UnaryExpression]: ts.PrefixUnaryExpression | ts.PostfixUnaryExpression | ts.DeleteExpression | ts.VoidExpression | ts.TypeOfExpression;
141
+ [AST_NODE_TYPES.VariableDeclaration]: ts.VariableDeclarationList | ts.VariableStatement;
142
+ [AST_NODE_TYPES.VariableDeclarator]: ts.VariableDeclaration;
143
+ [AST_NODE_TYPES.WhileStatement]: ts.WhileStatement;
144
+ [AST_NODE_TYPES.WithStatement]: ts.WithStatement;
145
+ [AST_NODE_TYPES.YieldExpression]: ts.YieldExpression;
146
+ [AST_NODE_TYPES.TSEmptyBodyFunctionExpression]: ts.FunctionExpression | ts.ConstructorDeclaration | ts.GetAccessorDeclaration | ts.SetAccessorDeclaration | ts.MethodDeclaration;
147
+ [AST_NODE_TYPES.TSAbstractKeyword]: ts.Token<ts.SyntaxKind.AbstractKeyword>;
148
+ [AST_NODE_TYPES.TSNullKeyword]: ts.NullLiteral | ts.KeywordTypeNode;
149
+ [AST_NODE_TYPES.TSAnyKeyword]: ts.KeywordTypeNode;
150
+ [AST_NODE_TYPES.TSBigIntKeyword]: ts.KeywordTypeNode;
151
+ [AST_NODE_TYPES.TSBooleanKeyword]: ts.KeywordTypeNode;
152
+ [AST_NODE_TYPES.TSIntrinsicKeyword]: ts.KeywordTypeNode;
153
+ [AST_NODE_TYPES.TSNeverKeyword]: ts.KeywordTypeNode;
154
+ [AST_NODE_TYPES.TSNumberKeyword]: ts.KeywordTypeNode;
155
+ [AST_NODE_TYPES.TSObjectKeyword]: ts.KeywordTypeNode;
156
+ [AST_NODE_TYPES.TSStringKeyword]: ts.KeywordTypeNode;
157
+ [AST_NODE_TYPES.TSSymbolKeyword]: ts.KeywordTypeNode;
158
+ [AST_NODE_TYPES.TSUnknownKeyword]: ts.KeywordTypeNode;
159
+ [AST_NODE_TYPES.TSVoidKeyword]: ts.KeywordTypeNode;
160
+ [AST_NODE_TYPES.TSUndefinedKeyword]: ts.KeywordTypeNode;
161
+ [AST_NODE_TYPES.TSAsyncKeyword]: ts.Token<ts.SyntaxKind.AsyncKeyword>;
162
+ [AST_NODE_TYPES.TSDeclareKeyword]: ts.Token<ts.SyntaxKind.DeclareKeyword>;
163
+ [AST_NODE_TYPES.TSExportKeyword]: ts.Token<ts.SyntaxKind.ExportKeyword>;
164
+ [AST_NODE_TYPES.TSStaticKeyword]: ts.Token<ts.SyntaxKind.StaticKeyword>;
165
+ [AST_NODE_TYPES.TSPublicKeyword]: ts.Token<ts.SyntaxKind.PublicKeyword>;
166
+ [AST_NODE_TYPES.TSPrivateKeyword]: ts.Token<ts.SyntaxKind.PrivateKeyword>;
167
+ [AST_NODE_TYPES.TSProtectedKeyword]: ts.Token<ts.SyntaxKind.ProtectedKeyword>;
168
+ [AST_NODE_TYPES.TSReadonlyKeyword]: ts.Token<ts.SyntaxKind.ReadonlyKeyword>;
169
+ }
170
+ /**
171
+ * Maps TSESTree AST Node type to the expected TypeScript AST Node type(s).
172
+ * This mapping is based on the internal logic of the parser.
173
+ */
174
+ export declare type TSESTreeToTSNode<T extends TSESTree.Node = TSESTree.Node> = Extract<TSNode | ts.Token<ts.SyntaxKind.NewKeyword | ts.SyntaxKind.ImportKeyword>, EstreeToTsNodeTypes[T['type']]>;
175
+ //# sourceMappingURL=estree-to-ts-node-types.d.ts.map
@@ -0,0 +1,4 @@
1
+ export { AST_NODE_TYPES, AST_TOKEN_TYPES, TSESTree, } from '@typescript-eslint/types';
2
+ export * from './ts-nodes';
3
+ export * from './estree-to-ts-node-types';
4
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1,18 @@
1
+ import * as ts from 'typescript';
2
+ declare module 'typescript' {
3
+ interface NamedTupleMember extends ts.Node {
4
+ }
5
+ interface TemplateLiteralTypeNode extends ts.Node {
6
+ }
7
+ interface PrivateIdentifier extends ts.Node {
8
+ }
9
+ interface ClassStaticBlockDeclaration extends ts.Node {
10
+ }
11
+ interface AssertClause extends ts.Node {
12
+ }
13
+ interface AssertEntry extends ts.Node {
14
+ }
15
+ }
16
+ export declare type TSToken = ts.Token<ts.SyntaxKind>;
17
+ export declare type TSNode = ts.AssertClause | ts.AssertEntry | ts.Modifier | ts.Identifier | ts.PrivateIdentifier | ts.QualifiedName | ts.ComputedPropertyName | ts.Decorator | ts.TypeParameterDeclaration | ts.CallSignatureDeclaration | ts.ConstructSignatureDeclaration | ts.VariableDeclaration | ts.VariableDeclarationList | ts.ParameterDeclaration | ts.BindingElement | ts.PropertySignature | ts.PropertyDeclaration | ts.PropertyAssignment | ts.ShorthandPropertyAssignment | ts.SpreadAssignment | ts.ObjectBindingPattern | ts.ArrayBindingPattern | ts.FunctionDeclaration | ts.MethodSignature | ts.MethodDeclaration | ts.ConstructorDeclaration | ts.SemicolonClassElement | ts.GetAccessorDeclaration | ts.SetAccessorDeclaration | ts.IndexSignatureDeclaration | ts.KeywordTypeNode | ts.ImportTypeNode | ts.ThisTypeNode | ts.ClassStaticBlockDeclaration | ts.ConstructorTypeNode | ts.FunctionTypeNode | ts.TypeReferenceNode | ts.TypePredicateNode | ts.TypeQueryNode | ts.TypeLiteralNode | ts.ArrayTypeNode | ts.NamedTupleMember | ts.TupleTypeNode | ts.OptionalTypeNode | ts.RestTypeNode | ts.UnionTypeNode | ts.IntersectionTypeNode | ts.ConditionalTypeNode | ts.InferTypeNode | ts.ParenthesizedTypeNode | ts.TypeOperatorNode | ts.IndexedAccessTypeNode | ts.MappedTypeNode | ts.LiteralTypeNode | ts.StringLiteral | ts.OmittedExpression | ts.PartiallyEmittedExpression | ts.PrefixUnaryExpression | ts.PostfixUnaryExpression | ts.NullLiteral | ts.BooleanLiteral | ts.ThisExpression | ts.SuperExpression | ts.ImportExpression | ts.DeleteExpression | ts.TypeOfExpression | ts.VoidExpression | ts.AwaitExpression | ts.YieldExpression | ts.SyntheticExpression | ts.BinaryExpression | ts.ConditionalExpression | ts.FunctionExpression | ts.ArrowFunction | ts.RegularExpressionLiteral | ts.NoSubstitutionTemplateLiteral | ts.NumericLiteral | ts.BigIntLiteral | ts.TemplateHead | ts.TemplateMiddle | ts.TemplateTail | ts.TemplateExpression | ts.TemplateSpan | ts.ParenthesizedExpression | ts.ArrayLiteralExpression | ts.SpreadElement | ts.ObjectLiteralExpression | ts.PropertyAccessExpression | ts.ElementAccessExpression | ts.CallExpression | ts.ExpressionWithTypeArguments | ts.NewExpression | ts.TaggedTemplateExpression | ts.AsExpression | ts.TypeAssertion | ts.NonNullExpression | ts.MetaProperty | ts.JsxElement | ts.JsxOpeningElement | ts.JsxSelfClosingElement | ts.JsxFragment | ts.JsxOpeningFragment | ts.JsxClosingFragment | ts.JsxAttribute | ts.JsxSpreadAttribute | ts.JsxClosingElement | ts.JsxExpression | ts.JsxText | ts.NotEmittedStatement | ts.CommaListExpression | ts.EmptyStatement | ts.DebuggerStatement | ts.MissingDeclaration | ts.Block | ts.VariableStatement | ts.ExpressionStatement | ts.IfStatement | ts.DoStatement | ts.WhileStatement | ts.ForStatement | ts.ForInStatement | ts.ForOfStatement | ts.BreakStatement | ts.ContinueStatement | ts.ReturnStatement | ts.WithStatement | ts.SwitchStatement | ts.CaseBlock | ts.CaseClause | ts.DefaultClause | ts.LabeledStatement | ts.ThrowStatement | ts.TryStatement | ts.CatchClause | ts.ClassDeclaration | ts.ClassExpression | ts.InterfaceDeclaration | ts.HeritageClause | ts.TypeAliasDeclaration | ts.EnumMember | ts.EnumDeclaration | ts.ModuleDeclaration | ts.ModuleBlock | ts.ImportEqualsDeclaration | ts.ExternalModuleReference | ts.ImportDeclaration | ts.ImportClause | ts.NamespaceImport | ts.NamespaceExportDeclaration | ts.ExportDeclaration | ts.NamedImports | ts.NamedExports | ts.ImportSpecifier | ts.ExportSpecifier | ts.ExportAssignment | ts.SourceFile | ts.Bundle | ts.InputFiles | ts.UnparsedSource | ts.JsonMinusNumericLiteral | ts.TemplateLiteralTypeNode | ts.JSDoc | ts.JSDocTypeExpression | ts.JSDocUnknownTag | ts.JSDocAugmentsTag | ts.JSDocClassTag | ts.JSDocEnumTag | ts.JSDocThisTag | ts.JSDocTemplateTag | ts.JSDocReturnTag | ts.JSDocTypeTag | ts.JSDocTypedefTag | ts.JSDocCallbackTag | ts.JSDocSignature | ts.JSDocPropertyTag | ts.JSDocParameterTag | ts.JSDocTypeLiteral | ts.JSDocFunctionType | ts.JSDocAllType | ts.JSDocUnknownType | ts.JSDocNullableType | ts.JSDocNonNullableType | ts.JSDocOptionalType | ts.JSDocVariadicType | ts.JSDocAuthorTag;
18
+ //# sourceMappingURL=ts-nodes.d.ts.map
@@ -0,0 +1,3 @@
1
+ declare const typescriptVersionIsAtLeast: Record<"3.7" | "3.8" | "3.9" | "4.0", boolean>;
2
+ export { typescriptVersionIsAtLeast };
3
+ //# sourceMappingURL=version-check.d.ts.map
@@ -0,0 +1,9 @@
1
+ import type { SourceFile } from 'typescript';
2
+ import { ASTMaps } from './convert';
3
+ import type { Extra } from './parser-options';
4
+ import type { TSESTree } from './ts-estree';
5
+ export declare function astConverter(ast: SourceFile, extra: Extra, shouldPreserveNodeMaps: boolean): {
6
+ estree: TSESTree.Program;
7
+ astMaps: ASTMaps;
8
+ };
9
+ //# sourceMappingURL=ast-converter.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ast-converter.d.ts","sourceRoot":"","sources":["../src/ast-converter.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAC7C,OAAO,EAA2B,OAAO,EAAE,MAAM,WAAW,CAAC;AAG7D,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,kBAAkB,CAAC;AAC9C,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,aAAa,CAAC;AAG5C,wBAAgB,YAAY,CAC1B,GAAG,EAAE,UAAU,EACf,KAAK,EAAE,KAAK,EACZ,sBAAsB,EAAE,OAAO,GAC9B;IAAE,MAAM,EAAE,QAAQ,CAAC,OAAO,CAAC;IAAC,OAAO,EAAE,OAAO,CAAA;CAAE,CAyDhD"}
@@ -0,0 +1,60 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.astConverter = void 0;
4
+ const convert_1 = require("./convert");
5
+ const convert_comments_1 = require("./convert-comments");
6
+ const node_utils_1 = require("./node-utils");
7
+ const simple_traverse_1 = require("./simple-traverse");
8
+ function astConverter(ast, extra, shouldPreserveNodeMaps) {
9
+ /**
10
+ * The TypeScript compiler produced fundamental parse errors when parsing the
11
+ * source.
12
+ */
13
+ const { parseDiagnostics } = ast;
14
+ if (parseDiagnostics.length) {
15
+ throw (0, convert_1.convertError)(parseDiagnostics[0]);
16
+ }
17
+ /**
18
+ * Recursively convert the TypeScript AST into an ESTree-compatible AST
19
+ */
20
+ const instance = new convert_1.Converter(ast, {
21
+ errorOnUnknownASTType: extra.errorOnUnknownASTType || false,
22
+ shouldPreserveNodeMaps,
23
+ });
24
+ const estree = instance.convertProgram();
25
+ /**
26
+ * Optionally remove range and loc if specified
27
+ */
28
+ if (!extra.range || !extra.loc) {
29
+ (0, simple_traverse_1.simpleTraverse)(estree, {
30
+ enter: node => {
31
+ if (!extra.range) {
32
+ // eslint-disable-next-line @typescript-eslint/ban-ts-comment -- TS 4.0 made this an error because the types aren't optional
33
+ // @ts-expect-error
34
+ delete node.range;
35
+ }
36
+ if (!extra.loc) {
37
+ // eslint-disable-next-line @typescript-eslint/ban-ts-comment -- TS 4.0 made this an error because the types aren't optional
38
+ // @ts-expect-error
39
+ delete node.loc;
40
+ }
41
+ },
42
+ });
43
+ }
44
+ /**
45
+ * Optionally convert and include all tokens in the AST
46
+ */
47
+ if (extra.tokens) {
48
+ estree.tokens = (0, node_utils_1.convertTokens)(ast);
49
+ }
50
+ /**
51
+ * Optionally convert and include all comments in the AST
52
+ */
53
+ if (extra.comment) {
54
+ estree.comments = (0, convert_comments_1.convertComments)(ast, extra.code);
55
+ }
56
+ const astMaps = instance.getASTMaps();
57
+ return { estree, astMaps };
58
+ }
59
+ exports.astConverter = astConverter;
60
+ //# sourceMappingURL=ast-converter.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ast-converter.js","sourceRoot":"","sources":["../src/ast-converter.ts"],"names":[],"mappings":";;;AACA,uCAA6D;AAC7D,yDAAqD;AACrD,6CAA6C;AAG7C,uDAAmD;AAEnD,SAAgB,YAAY,CAC1B,GAAe,EACf,KAAY,EACZ,sBAA+B;IAE/B;;;OAGG;IACH,MAAM,EAAE,gBAAgB,EAAE,GAAG,GAAG,CAAC;IACjC,IAAI,gBAAgB,CAAC,MAAM,EAAE;QAC3B,MAAM,IAAA,sBAAY,EAAC,gBAAgB,CAAC,CAAC,CAAC,CAAC,CAAC;KACzC;IAED;;OAEG;IACH,MAAM,QAAQ,GAAG,IAAI,mBAAS,CAAC,GAAG,EAAE;QAClC,qBAAqB,EAAE,KAAK,CAAC,qBAAqB,IAAI,KAAK;QAC3D,sBAAsB;KACvB,CAAC,CAAC;IAEH,MAAM,MAAM,GAAG,QAAQ,CAAC,cAAc,EAAE,CAAC;IAEzC;;OAEG;IACH,IAAI,CAAC,KAAK,CAAC,KAAK,IAAI,CAAC,KAAK,CAAC,GAAG,EAAE;QAC9B,IAAA,gCAAc,EAAC,MAAM,EAAE;YACrB,KAAK,EAAE,IAAI,CAAC,EAAE;gBACZ,IAAI,CAAC,KAAK,CAAC,KAAK,EAAE;oBAChB,4HAA4H;oBAC5H,mBAAmB;oBACnB,OAAO,IAAI,CAAC,KAAK,CAAC;iBACnB;gBACD,IAAI,CAAC,KAAK,CAAC,GAAG,EAAE;oBACd,4HAA4H;oBAC5H,mBAAmB;oBACnB,OAAO,IAAI,CAAC,GAAG,CAAC;iBACjB;YACH,CAAC;SACF,CAAC,CAAC;KACJ;IAED;;OAEG;IACH,IAAI,KAAK,CAAC,MAAM,EAAE;QAChB,MAAM,CAAC,MAAM,GAAG,IAAA,0BAAa,EAAC,GAAG,CAAC,CAAC;KACpC;IAED;;OAEG;IACH,IAAI,KAAK,CAAC,OAAO,EAAE;QACjB,MAAM,CAAC,QAAQ,GAAG,IAAA,kCAAe,EAAC,GAAG,EAAE,KAAK,CAAC,IAAI,CAAC,CAAC;KACpD;IAED,MAAM,OAAO,GAAG,QAAQ,CAAC,UAAU,EAAE,CAAC;IAEtC,OAAO,EAAE,MAAM,EAAE,OAAO,EAAE,CAAC;AAC7B,CAAC;AA7DD,oCA6DC"}
@@ -0,0 +1,11 @@
1
+ import * as ts from 'typescript';
2
+ import { TSESTree } from './ts-estree';
3
+ /**
4
+ * Convert all comments for the given AST.
5
+ * @param ast the AST object
6
+ * @param code the TypeScript code
7
+ * @returns the converted ESTreeComment
8
+ * @private
9
+ */
10
+ export declare function convertComments(ast: ts.SourceFile, code: string): TSESTree.Comment[];
11
+ //# sourceMappingURL=convert-comments.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"convert-comments.d.ts","sourceRoot":"","sources":["../src/convert-comments.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,YAAY,CAAC;AAGjC,OAAO,EAAmB,QAAQ,EAAE,MAAM,aAAa,CAAC;AAExD;;;;;;GAMG;AACH,wBAAgB,eAAe,CAC7B,GAAG,EAAE,EAAE,CAAC,UAAU,EAClB,IAAI,EAAE,MAAM,GACX,QAAQ,CAAC,OAAO,EAAE,CAgCpB"}
@@ -0,0 +1,63 @@
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.convertComments = void 0;
27
+ const ts = __importStar(require("typescript"));
28
+ const util_1 = require("tsutils/util/util");
29
+ const node_utils_1 = require("./node-utils");
30
+ const ts_estree_1 = require("./ts-estree");
31
+ /**
32
+ * Convert all comments for the given AST.
33
+ * @param ast the AST object
34
+ * @param code the TypeScript code
35
+ * @returns the converted ESTreeComment
36
+ * @private
37
+ */
38
+ function convertComments(ast, code) {
39
+ const comments = [];
40
+ (0, util_1.forEachComment)(ast, (_, comment) => {
41
+ const type = comment.kind == ts.SyntaxKind.SingleLineCommentTrivia
42
+ ? ts_estree_1.AST_TOKEN_TYPES.Line
43
+ : ts_estree_1.AST_TOKEN_TYPES.Block;
44
+ const range = [comment.pos, comment.end];
45
+ const loc = (0, node_utils_1.getLocFor)(range[0], range[1], ast);
46
+ // both comments start with 2 characters - /* or //
47
+ const textStart = range[0] + 2;
48
+ const textEnd = comment.kind === ts.SyntaxKind.SingleLineCommentTrivia
49
+ ? // single line comments end at the end
50
+ range[1] - textStart
51
+ : // multiline comments end 2 characters early
52
+ range[1] - textStart - 2;
53
+ comments.push({
54
+ type,
55
+ value: code.slice(textStart, textStart + textEnd),
56
+ range,
57
+ loc,
58
+ });
59
+ }, ast);
60
+ return comments;
61
+ }
62
+ exports.convertComments = convertComments;
63
+ //# sourceMappingURL=convert-comments.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"convert-comments.js","sourceRoot":"","sources":["../src/convert-comments.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,+CAAiC;AACjC,4CAAmD;AACnD,6CAAyC;AACzC,2CAAwD;AAExD;;;;;;GAMG;AACH,SAAgB,eAAe,CAC7B,GAAkB,EAClB,IAAY;IAEZ,MAAM,QAAQ,GAAuB,EAAE,CAAC;IAExC,IAAA,qBAAc,EACZ,GAAG,EACH,CAAC,CAAC,EAAE,OAAO,EAAE,EAAE;QACb,MAAM,IAAI,GACR,OAAO,CAAC,IAAI,IAAI,EAAE,CAAC,UAAU,CAAC,uBAAuB;YACnD,CAAC,CAAC,2BAAe,CAAC,IAAI;YACtB,CAAC,CAAC,2BAAe,CAAC,KAAK,CAAC;QAC5B,MAAM,KAAK,GAAmB,CAAC,OAAO,CAAC,GAAG,EAAE,OAAO,CAAC,GAAG,CAAC,CAAC;QACzD,MAAM,GAAG,GAAG,IAAA,sBAAS,EAAC,KAAK,CAAC,CAAC,CAAC,EAAE,KAAK,CAAC,CAAC,CAAC,EAAE,GAAG,CAAC,CAAC;QAE/C,mDAAmD;QACnD,MAAM,SAAS,GAAG,KAAK,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC;QAC/B,MAAM,OAAO,GACX,OAAO,CAAC,IAAI,KAAK,EAAE,CAAC,UAAU,CAAC,uBAAuB;YACpD,CAAC,CAAC,sCAAsC;gBACtC,KAAK,CAAC,CAAC,CAAC,GAAG,SAAS;YACtB,CAAC,CAAC,4CAA4C;gBAC5C,KAAK,CAAC,CAAC,CAAC,GAAG,SAAS,GAAG,CAAC,CAAC;QAC/B,QAAQ,CAAC,IAAI,CAAC;YACZ,IAAI;YACJ,KAAK,EAAE,IAAI,CAAC,KAAK,CAAC,SAAS,EAAE,SAAS,GAAG,OAAO,CAAC;YACjD,KAAK;YACL,GAAG;SACJ,CAAC,CAAC;IACL,CAAC,EACD,GAAG,CACJ,CAAC;IAEF,OAAO,QAAQ,CAAC;AAClB,CAAC;AAnCD,0CAmCC"}
@@ -0,0 +1,157 @@
1
+ import * as ts from 'typescript';
2
+ import { TSError } from './node-utils';
3
+ import type { ParserWeakMap, ParserWeakMapESTreeToTSNode } from './parser-options';
4
+ import type { SemanticOrSyntacticError } from './semantic-or-syntactic-errors';
5
+ import { TSESTree, TSNode } from './ts-estree';
6
+ interface ConverterOptions {
7
+ errorOnUnknownASTType: boolean;
8
+ shouldPreserveNodeMaps: boolean;
9
+ }
10
+ /**
11
+ * Extends and formats a given error object
12
+ * @param error the error object
13
+ * @returns converted error object
14
+ */
15
+ export declare function convertError(error: ts.DiagnosticWithLocation | SemanticOrSyntacticError): TSError;
16
+ export interface ASTMaps {
17
+ esTreeNodeToTSNodeMap: ParserWeakMapESTreeToTSNode;
18
+ tsNodeToESTreeNodeMap: ParserWeakMap<TSNode, TSESTree.Node>;
19
+ }
20
+ export declare class Converter {
21
+ private readonly ast;
22
+ private readonly options;
23
+ private readonly esTreeNodeToTSNodeMap;
24
+ private readonly tsNodeToESTreeNodeMap;
25
+ private allowPattern;
26
+ private inTypeMode;
27
+ /**
28
+ * Converts a TypeScript node into an ESTree node
29
+ * @param ast the full TypeScript AST
30
+ * @param options additional options for the conversion
31
+ * @returns the converted ESTreeNode
32
+ */
33
+ constructor(ast: ts.SourceFile, options: ConverterOptions);
34
+ getASTMaps(): ASTMaps;
35
+ convertProgram(): TSESTree.Program;
36
+ /**
37
+ * Converts a TypeScript node into an ESTree node.
38
+ * @param node the child ts.Node
39
+ * @param parent parentNode
40
+ * @param inTypeMode flag to determine if we are in typeMode
41
+ * @param allowPattern flag to determine if patterns are allowed
42
+ * @returns the converted ESTree node
43
+ */
44
+ private converter;
45
+ /**
46
+ * Fixes the exports of the given ts.Node
47
+ * @param node the ts.Node
48
+ * @param result result
49
+ * @returns the ESTreeNode with fixed exports
50
+ */
51
+ private fixExports;
52
+ /**
53
+ * Register specific TypeScript node into map with first ESTree node provided
54
+ */
55
+ private registerTSNodeInNodeMap;
56
+ /**
57
+ * Converts a TypeScript node into an ESTree node.
58
+ * @param child the child ts.Node
59
+ * @param parent parentNode
60
+ * @returns the converted ESTree node
61
+ */
62
+ private convertPattern;
63
+ /**
64
+ * Converts a TypeScript node into an ESTree node.
65
+ * @param child the child ts.Node
66
+ * @param parent parentNode
67
+ * @returns the converted ESTree node
68
+ */
69
+ private convertChild;
70
+ /**
71
+ * Converts a TypeScript node into an ESTree node.
72
+ * @param child the child ts.Node
73
+ * @param parent parentNode
74
+ * @returns the converted ESTree node
75
+ */
76
+ private convertType;
77
+ private createNode;
78
+ private convertBindingNameWithTypeAnnotation;
79
+ /**
80
+ * Converts a child into a type annotation. This creates an intermediary
81
+ * TypeAnnotation node to match what Flow does.
82
+ * @param child The TypeScript AST node to convert.
83
+ * @param parent parentNode
84
+ * @returns The type annotation node.
85
+ */
86
+ private convertTypeAnnotation;
87
+ /**
88
+ * Coverts body Nodes and add a directive field to StringLiterals
89
+ * @param nodes of ts.Node
90
+ * @param parent parentNode
91
+ * @returns Array of body statements
92
+ */
93
+ private convertBodyExpressions;
94
+ /**
95
+ * Converts a ts.Node's typeArguments to TSTypeParameterInstantiation node
96
+ * @param typeArguments ts.NodeArray typeArguments
97
+ * @param node parent used to create this node
98
+ * @returns TypeParameterInstantiation node
99
+ */
100
+ private convertTypeArgumentsToTypeParameters;
101
+ /**
102
+ * Converts a ts.Node's typeParameters to TSTypeParameterDeclaration node
103
+ * @param typeParameters ts.Node typeParameters
104
+ * @returns TypeParameterDeclaration node
105
+ */
106
+ private convertTSTypeParametersToTypeParametersDeclaration;
107
+ /**
108
+ * Converts an array of ts.Node parameters into an array of ESTreeNode params
109
+ * @param parameters An array of ts.Node params to be converted
110
+ * @returns an array of converted ESTreeNode params
111
+ */
112
+ private convertParameters;
113
+ private convertChainExpression;
114
+ /**
115
+ * For nodes that are copied directly from the TypeScript AST into
116
+ * ESTree mostly as-is. The only difference is the addition of a type
117
+ * property instead of a kind property. Recursively copies all children.
118
+ */
119
+ private deeplyCopy;
120
+ private convertJSXIdentifier;
121
+ private convertJSXNamespaceOrIdentifier;
122
+ /**
123
+ * Converts a TypeScript JSX node.tagName into an ESTree node.name
124
+ * @param node the tagName object from a JSX ts.Node
125
+ * @param parent
126
+ * @returns the converted ESTree name object
127
+ */
128
+ private convertJSXTagName;
129
+ private convertMethodSignature;
130
+ private convertAssertClasue;
131
+ /**
132
+ * Applies the given TS modifiers to the given result object.
133
+ * @param result
134
+ * @param modifiers original ts.Nodes from the node.modifiers array
135
+ * @returns the current result object will be mutated
136
+ * @deprecated This method adds not standardized `modifiers` property in nodes
137
+ */
138
+ private applyModifiersToResult;
139
+ /**
140
+ * Uses the provided range location to adjust the location data of the given Node
141
+ * @param result The node that will have its location data mutated
142
+ * @param childRange The child node range used to expand location
143
+ */
144
+ private fixParentLocation;
145
+ private assertModuleSpecifier;
146
+ /**
147
+ * Converts a TypeScript node into an ESTree node.
148
+ * The core of the conversion logic:
149
+ * Identify and convert each relevant TypeScript SyntaxKind
150
+ * @param node the child ts.Node
151
+ * @param parent parentNode
152
+ * @returns the converted ESTree node
153
+ */
154
+ private convertNode;
155
+ }
156
+ export {};
157
+ //# sourceMappingURL=convert.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"convert.d.ts","sourceRoot":"","sources":["../src/convert.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,MAAM,YAAY,CAAC;AACjC,OAAO,EAoBL,OAAO,EAER,MAAM,cAAc,CAAC;AACtB,OAAO,KAAK,EACV,aAAa,EACb,2BAA2B,EAC5B,MAAM,kBAAkB,CAAC;AAC1B,OAAO,KAAK,EAAE,wBAAwB,EAAE,MAAM,gCAAgC,CAAC;AAC/E,OAAO,EAEL,QAAQ,EAER,MAAM,EACP,MAAM,aAAa,CAAC;AAKrB,UAAU,gBAAgB;IACxB,qBAAqB,EAAE,OAAO,CAAC;IAC/B,sBAAsB,EAAE,OAAO,CAAC;CACjC;AAED;;;;GAIG;AACH,wBAAgB,YAAY,CAC1B,KAAK,EAAE,EAAE,CAAC,sBAAsB,GAAG,wBAAwB,GAC1D,OAAO,CAMT;AAED,MAAM,WAAW,OAAO;IACtB,qBAAqB,EAAE,2BAA2B,CAAC;IACnD,qBAAqB,EAAE,aAAa,CAAC,MAAM,EAAE,QAAQ,CAAC,IAAI,CAAC,CAAC;CAC7D;AAED,qBAAa,SAAS;IACpB,OAAO,CAAC,QAAQ,CAAC,GAAG,CAAgB;IACpC,OAAO,CAAC,QAAQ,CAAC,OAAO,CAAmB;IAC3C,OAAO,CAAC,QAAQ,CAAC,qBAAqB,CAAiB;IACvD,OAAO,CAAC,QAAQ,CAAC,qBAAqB,CAAiB;IAEvD,OAAO,CAAC,YAAY,CAAS;IAC7B,OAAO,CAAC,UAAU,CAAS;IAE3B;;;;;OAKG;gBACS,GAAG,EAAE,EAAE,CAAC,UAAU,EAAE,OAAO,EAAE,gBAAgB;IAKzD,UAAU,IAAI,OAAO;IAOrB,cAAc,IAAI,QAAQ,CAAC,OAAO;IAIlC;;;;;;;OAOG;IACH,OAAO,CAAC,SAAS;IAkCjB;;;;;OAKG;IACH,OAAO,CAAC,UAAU;IA+DlB;;OAEG;IACH,OAAO,CAAC,uBAAuB;IAW/B;;;;;OAKG;IACH,OAAO,CAAC,cAAc;IAItB;;;;;OAKG;IACH,OAAO,CAAC,YAAY;IAIpB;;;;;OAKG;IACH,OAAO,CAAC,WAAW;IAInB,OAAO,CAAC,UAAU;IAsBlB,OAAO,CAAC,oCAAoC;IAe5C;;;;;;OAMG;IACH,OAAO,CAAC,qBAAqB;IAqB7B;;;;;OAKG;IACH,OAAO,CAAC,sBAAsB;IAkC9B;;;;;OAKG;IACH,OAAO,CAAC,oCAAoC;IAa5C;;;;OAIG;IACH,OAAO,CAAC,kDAAkD;IAe1D;;;;OAIG;IACH,OAAO,CAAC,iBAAiB;IAkBzB,OAAO,CAAC,sBAAsB;IA4C9B;;;;OAIG;IACH,OAAO,CAAC,UAAU;IAmElB,OAAO,CAAC,oBAAoB;IAW5B,OAAO,CAAC,+BAA+B;IA6BvC;;;;;OAKG;IACH,OAAO,CAAC,iBAAiB;IA8BzB,OAAO,CAAC,sBAAsB;IA4D9B,OAAO,CAAC,mBAAmB;IAQ3B;;;;;;OAMG;IACH,OAAO,CAAC,sBAAsB;IA8C9B;;;;OAIG;IACH,OAAO,CAAC,iBAAiB;IAczB,OAAO,CAAC,qBAAqB;IAwB7B;;;;;;;OAOG;IACH,OAAO,CAAC,WAAW;CAumEpB"}