repoburg 1.0.59 → 1.0.60
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/backend/dist/context-generation/context-generation.service.js +5 -3
- package/backend/dist/context-generation/context-generation.service.js.map +1 -1
- package/backend/dist/tsconfig.build.tsbuildinfo +1 -1
- package/backend/dist/workspace/workspace.service.js +5 -3
- package/backend/dist/workspace/workspace.service.js.map +1 -1
- package/backend/node_modules/@eslint/eslintrc/LICENSE +19 -0
- package/backend/node_modules/@eslint/eslintrc/README.md +115 -0
- package/backend/node_modules/@eslint/eslintrc/conf/config-schema.js +79 -0
- package/backend/node_modules/@eslint/eslintrc/conf/environments.js +215 -0
- package/backend/node_modules/@eslint/eslintrc/dist/eslintrc-universal.cjs +1104 -0
- package/backend/node_modules/@eslint/eslintrc/dist/eslintrc-universal.cjs.map +1 -0
- package/backend/node_modules/@eslint/eslintrc/dist/eslintrc.cjs +4344 -0
- package/backend/node_modules/@eslint/eslintrc/dist/eslintrc.cjs.map +1 -0
- package/backend/node_modules/@eslint/eslintrc/lib/cascading-config-array-factory.js +532 -0
- package/backend/node_modules/@eslint/eslintrc/lib/config-array/config-array.js +523 -0
- package/backend/node_modules/@eslint/eslintrc/lib/config-array/config-dependency.js +124 -0
- package/backend/node_modules/@eslint/eslintrc/lib/config-array/extracted-config.js +145 -0
- package/backend/node_modules/@eslint/eslintrc/lib/config-array/ignore-pattern.js +238 -0
- package/backend/node_modules/@eslint/eslintrc/lib/config-array/index.js +19 -0
- package/backend/node_modules/@eslint/eslintrc/lib/config-array/override-tester.js +225 -0
- package/backend/node_modules/@eslint/eslintrc/lib/config-array-factory.js +1151 -0
- package/backend/node_modules/@eslint/eslintrc/lib/flat-compat.js +318 -0
- package/backend/node_modules/@eslint/eslintrc/lib/index-universal.js +29 -0
- package/backend/node_modules/@eslint/eslintrc/lib/index.js +56 -0
- package/backend/node_modules/@eslint/eslintrc/lib/shared/ajv.js +191 -0
- package/backend/node_modules/@eslint/eslintrc/lib/shared/config-ops.js +135 -0
- package/backend/node_modules/@eslint/eslintrc/lib/shared/config-validator.js +325 -0
- package/backend/node_modules/@eslint/eslintrc/lib/shared/deprecation-warnings.js +63 -0
- package/backend/node_modules/@eslint/eslintrc/lib/shared/naming.js +96 -0
- package/backend/node_modules/@eslint/eslintrc/lib/shared/relative-module-resolver.js +42 -0
- package/backend/node_modules/@eslint/eslintrc/lib/shared/types.js +149 -0
- package/backend/node_modules/@eslint/eslintrc/package.json +82 -0
- package/backend/node_modules/@eslint/eslintrc/universal.js +9 -0
- package/backend/node_modules/{brace-expansion → @typescript-eslint/scope-manager}/LICENSE +1 -1
- package/backend/node_modules/@typescript-eslint/scope-manager/README.md +10 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/ID.d.ts +4 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/ID.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/ID.js +21 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/ID.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/ScopeManager.d.ts +72 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/ScopeManager.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/ScopeManager.js +183 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/ScopeManager.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/analyze.d.ts +56 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/analyze.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/analyze.js +42 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/analyze.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/assert.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/assert.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/assert.js +11 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/assert.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/CatchClauseDefinition.d.ts +10 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/CatchClauseDefinition.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/CatchClauseDefinition.js +14 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/CatchClauseDefinition.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/ClassNameDefinition.d.ts +10 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/ClassNameDefinition.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/ClassNameDefinition.js +14 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/ClassNameDefinition.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/Definition.d.ts +14 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/Definition.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/Definition.js +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/Definition.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/DefinitionBase.d.ts +39 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/DefinitionBase.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/DefinitionBase.js +19 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/DefinitionBase.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/DefinitionType.d.ts +15 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/DefinitionType.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/DefinitionType.js +18 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/DefinitionType.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/FunctionNameDefinition.d.ts +10 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/FunctionNameDefinition.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/FunctionNameDefinition.js +14 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/FunctionNameDefinition.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/ImplicitGlobalVariableDefinition.d.ts +10 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/ImplicitGlobalVariableDefinition.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/ImplicitGlobalVariableDefinition.js +14 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/ImplicitGlobalVariableDefinition.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/ImportBindingDefinition.d.ts +11 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/ImportBindingDefinition.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/ImportBindingDefinition.js +14 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/ImportBindingDefinition.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/ParameterDefinition.d.ts +14 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/ParameterDefinition.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/ParameterDefinition.js +15 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/ParameterDefinition.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/TSEnumMemberDefinition.d.ts +10 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/TSEnumMemberDefinition.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/TSEnumMemberDefinition.js +14 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/TSEnumMemberDefinition.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/TSEnumNameDefinition.d.ts +10 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/TSEnumNameDefinition.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/TSEnumNameDefinition.js +14 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/TSEnumNameDefinition.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/TSModuleNameDefinition.d.ts +10 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/TSModuleNameDefinition.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/TSModuleNameDefinition.js +14 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/TSModuleNameDefinition.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/TypeDefinition.d.ts +10 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/TypeDefinition.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/TypeDefinition.js +14 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/TypeDefinition.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/VariableDefinition.d.ts +10 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/VariableDefinition.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/VariableDefinition.js +14 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/VariableDefinition.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/index.d.ts +14 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/index.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/index.js +30 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/definition/index.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/index.d.ts +9 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/index.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/index.js +31 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/index.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/base-config.d.ts +16 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/base-config.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/base-config.js +23 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/base-config.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/decorators.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/decorators.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/decorators.js +23 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/decorators.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/decorators.legacy.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/decorators.legacy.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/decorators.legacy.js +15 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/decorators.legacy.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/dom.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/dom.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/dom.iterable.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/dom.iterable.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/dom.iterable.js +75 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/dom.iterable.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/dom.js +1436 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/dom.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.collection.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.collection.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.collection.js +21 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.collection.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.core.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.core.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.core.js +23 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.core.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.generator.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.generator.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.generator.js +16 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.generator.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.iterable.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.iterable.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.iterable.js +55 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.iterable.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.js +30 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.promise.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.promise.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.promise.js +12 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.promise.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.proxy.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.proxy.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.proxy.js +13 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.proxy.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.reflect.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.reflect.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.reflect.js +12 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.reflect.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.symbol.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.symbol.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.symbol.js +12 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.symbol.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.symbol.wellknown.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.symbol.wellknown.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.symbol.wellknown.js +46 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.symbol.wellknown.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.array.include.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.array.include.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.array.include.js +22 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.array.include.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.full.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.full.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.full.js +20 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.full.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.js +14 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.date.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.date.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.date.js +12 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.date.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.full.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.full.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.full.js +20 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.full.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.intl.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.intl.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.intl.js +12 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.intl.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.js +24 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.object.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.object.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.object.js +12 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.object.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.sharedmemory.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.sharedmemory.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.sharedmemory.js +19 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.sharedmemory.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.string.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.string.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.string.js +12 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.string.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.typedarrays.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.typedarrays.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.typedarrays.js +20 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.typedarrays.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.asyncgenerator.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.asyncgenerator.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.asyncgenerator.js +16 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.asyncgenerator.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.asynciterable.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.asynciterable.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.asynciterable.js +19 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.asynciterable.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.full.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.full.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.full.js +20 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.full.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.intl.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.intl.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.intl.js +12 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.intl.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.js +22 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.promise.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.promise.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.promise.js +12 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.promise.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.regexp.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.regexp.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.regexp.js +14 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.regexp.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.array.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.array.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.array.js +14 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.array.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.full.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.full.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.full.js +20 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.full.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.intl.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.intl.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.intl.js +12 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.intl.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.js +22 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.object.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.object.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.object.js +14 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.object.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.string.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.string.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.string.js +12 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.string.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.symbol.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.symbol.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.symbol.js +12 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.symbol.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.bigint.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.bigint.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.bigint.js +22 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.bigint.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.date.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.date.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.date.js +14 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.date.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.full.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.full.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.full.js +20 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.full.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.intl.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.intl.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.intl.js +14 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.intl.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.js +28 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.number.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.number.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.number.js +14 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.number.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.promise.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.promise.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.promise.js +15 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.promise.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.sharedmemory.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.sharedmemory.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.sharedmemory.js +12 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.sharedmemory.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.string.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.string.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.string.js +14 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.string.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.symbol.wellknown.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.symbol.wellknown.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.symbol.wellknown.js +17 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.symbol.wellknown.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.full.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.full.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.full.js +20 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.full.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.intl.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.intl.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.intl.js +12 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.intl.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.js +20 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.promise.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.promise.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.promise.js +14 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.promise.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.string.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.string.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.string.js +12 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.string.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.weakref.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.weakref.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.weakref.js +15 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.weakref.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.array.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.array.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.array.js +24 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.array.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.error.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.error.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.error.js +21 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.error.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.full.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.full.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.full.js +20 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.full.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.intl.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.intl.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.intl.js +12 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.intl.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.js +26 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.object.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.object.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.object.js +12 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.object.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.regexp.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.regexp.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.regexp.js +15 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.regexp.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.sharedmemory.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.sharedmemory.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.sharedmemory.js +12 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.sharedmemory.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.string.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.string.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.string.js +12 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.string.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2023.array.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2023.array.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2023.array.js +24 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2023.array.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2023.collection.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2023.collection.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2023.collection.js +12 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2023.collection.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2023.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2023.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2023.full.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2023.full.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2023.full.js +20 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2023.full.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2023.js +16 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es2023.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es5.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es5.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es5.js +117 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es5.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es6.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es6.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es6.js +30 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es6.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es7.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es7.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es7.js +14 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/es7.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.array.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.array.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.array.js +24 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.array.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.asynciterable.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.asynciterable.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.asynciterable.js +19 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.asynciterable.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.bigint.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.bigint.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.bigint.js +22 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.bigint.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.collection.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.collection.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.collection.js +12 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.collection.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.decorators.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.decorators.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.decorators.js +17 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.decorators.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.disposable.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.disposable.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.disposable.js +22 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.disposable.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.full.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.full.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.full.js +20 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.full.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.intl.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.intl.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.intl.js +12 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.intl.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.js +18 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.promise.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.promise.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.promise.js +14 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.promise.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.string.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.string.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.string.js +12 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.string.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.symbol.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.symbol.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.symbol.js +12 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.symbol.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.weakref.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.weakref.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.weakref.js +15 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.weakref.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/index.d.ts +93 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/index.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/index.js +189 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/index.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/lib.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/lib.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/lib.js +18 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/lib.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/scripthost.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/scripthost.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/scripthost.js +24 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/scripthost.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.importscripts.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.importscripts.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.importscripts.js +9 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.importscripts.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.iterable.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.iterable.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.iterable.js +34 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.iterable.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.js +589 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/ClassVisitor.d.ts +29 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/ClassVisitor.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/ClassVisitor.js +311 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/ClassVisitor.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/ExportVisitor.d.ts +15 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/ExportVisitor.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/ExportVisitor.js +84 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/ExportVisitor.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/ImportVisitor.d.ts +14 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/ImportVisitor.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/ImportVisitor.js +50 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/ImportVisitor.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/PatternVisitor.d.ts +29 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/PatternVisitor.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/PatternVisitor.js +108 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/PatternVisitor.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/Reference.d.ts +89 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/Reference.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/Reference.js +107 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/Reference.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/Referencer.d.ts +87 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/Referencer.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/Referencer.js +548 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/Referencer.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/TypeVisitor.d.ts +33 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/TypeVisitor.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/TypeVisitor.js +230 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/TypeVisitor.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/Visitor.d.ts +13 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/Visitor.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/Visitor.js +41 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/Visitor.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/VisitorBase.d.ts +22 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/VisitorBase.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/VisitorBase.js +80 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/VisitorBase.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/index.d.ts +2 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/index.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/index.js +6 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/referencer/index.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/BlockScope.d.ts +10 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/BlockScope.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/BlockScope.js +12 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/BlockScope.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/CatchScope.d.ts +10 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/CatchScope.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/CatchScope.js +12 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/CatchScope.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassFieldInitializerScope.d.ts +10 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassFieldInitializerScope.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassFieldInitializerScope.js +12 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassFieldInitializerScope.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassScope.d.ts +10 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassScope.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassScope.js +12 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassScope.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassStaticBlockScope.d.ts +10 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassStaticBlockScope.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassStaticBlockScope.js +12 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassStaticBlockScope.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/ConditionalTypeScope.d.ts +10 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/ConditionalTypeScope.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/ConditionalTypeScope.js +12 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/ConditionalTypeScope.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/ForScope.d.ts +10 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/ForScope.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/ForScope.js +12 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/ForScope.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionExpressionNameScope.d.ts +11 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionExpressionNameScope.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionExpressionNameScope.js +17 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionExpressionNameScope.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionScope.d.ts +13 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionScope.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionScope.js +36 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionScope.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionTypeScope.d.ts +10 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionTypeScope.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionTypeScope.js +12 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionTypeScope.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/GlobalScope.d.ts +18 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/GlobalScope.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/GlobalScope.js +39 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/GlobalScope.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/MappedTypeScope.d.ts +10 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/MappedTypeScope.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/MappedTypeScope.js +12 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/MappedTypeScope.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/ModuleScope.d.ts +10 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/ModuleScope.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/ModuleScope.js +12 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/ModuleScope.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/Scope.d.ts +21 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/Scope.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/Scope.js +3 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/Scope.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/ScopeBase.d.ts +107 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/ScopeBase.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/ScopeBase.js +351 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/ScopeBase.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/ScopeType.d.ts +22 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/ScopeType.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/ScopeType.js +25 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/ScopeType.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/SwitchScope.d.ts +10 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/SwitchScope.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/SwitchScope.js +12 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/SwitchScope.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/TSEnumScope.d.ts +10 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/TSEnumScope.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/TSEnumScope.js +12 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/TSEnumScope.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/TSModuleScope.d.ts +10 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/TSModuleScope.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/TSModuleScope.js +12 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/TSModuleScope.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/TypeScope.d.ts +10 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/TypeScope.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/TypeScope.js +12 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/TypeScope.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/WithScope.d.ts +11 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/WithScope.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/WithScope.js +22 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/WithScope.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/index.d.ts +20 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/index.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/index.js +36 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/scope/index.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/variable/ESLintScopeVariable.d.ts +34 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/variable/ESLintScopeVariable.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/variable/ESLintScopeVariable.js +12 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/variable/ESLintScopeVariable.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/variable/ImplicitLibVariable.d.ts +25 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/variable/ImplicitLibVariable.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/variable/ImplicitLibVariable.js +19 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/variable/ImplicitLibVariable.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/variable/Variable.d.ts +18 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/variable/Variable.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/variable/Variable.js +33 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/variable/Variable.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/variable/VariableBase.d.ts +44 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/variable/VariableBase.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/variable/VariableBase.js +39 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/variable/VariableBase.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/variable/index.d.ts +4 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/variable/index.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/variable/index.js +10 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/dist/variable/index.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/scope-manager/package.json +71 -0
- package/backend/node_modules/@typescript-eslint/visitor-keys/LICENSE +21 -0
- package/backend/node_modules/@typescript-eslint/visitor-keys/README.md +10 -0
- package/backend/node_modules/@typescript-eslint/visitor-keys/dist/get-keys.d.ts +4 -0
- package/backend/node_modules/@typescript-eslint/visitor-keys/dist/get-keys.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/visitor-keys/dist/get-keys.js +7 -0
- package/backend/node_modules/@typescript-eslint/visitor-keys/dist/get-keys.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/visitor-keys/dist/index.d.ts +3 -0
- package/backend/node_modules/@typescript-eslint/visitor-keys/dist/index.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/visitor-keys/dist/index.js +8 -0
- package/backend/node_modules/@typescript-eslint/visitor-keys/dist/index.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/visitor-keys/dist/visitor-keys.d.ts +4 -0
- package/backend/node_modules/@typescript-eslint/visitor-keys/dist/visitor-keys.d.ts.map +1 -0
- package/backend/node_modules/@typescript-eslint/visitor-keys/dist/visitor-keys.js +190 -0
- package/backend/node_modules/@typescript-eslint/visitor-keys/dist/visitor-keys.js.map +1 -0
- package/backend/node_modules/@typescript-eslint/visitor-keys/package.json +70 -0
- package/backend/node_modules/ansi-styles/index.d.ts +345 -0
- package/backend/node_modules/ansi-styles/index.js +163 -0
- package/backend/node_modules/{strip-ansi → ansi-styles}/package.json +13 -11
- package/backend/node_modules/ansi-styles/readme.md +152 -0
- package/backend/node_modules/ts-api-utils/LICENSE.md +20 -0
- package/backend/node_modules/ts-api-utils/README.md +83 -0
- package/backend/node_modules/ts-api-utils/lib/index.cjs +2307 -0
- package/backend/node_modules/ts-api-utils/lib/index.d.cts +3063 -0
- package/backend/node_modules/ts-api-utils/lib/index.d.ts +3063 -0
- package/backend/node_modules/ts-api-utils/lib/index.js +2106 -0
- package/backend/node_modules/ts-api-utils/package.json +107 -0
- package/backend/node_modules/tsconfig-paths/CHANGELOG.md +407 -0
- package/backend/node_modules/{ms/license.md → tsconfig-paths/LICENSE} +1 -1
- package/backend/node_modules/tsconfig-paths/README.md +269 -0
- package/backend/node_modules/tsconfig-paths/lib/__tests__/config-loader.test.d.ts +1 -0
- package/backend/node_modules/tsconfig-paths/lib/__tests__/config-loader.test.js +87 -0
- package/backend/node_modules/tsconfig-paths/lib/__tests__/config-loader.test.js.map +1 -0
- package/backend/node_modules/tsconfig-paths/lib/__tests__/data/match-path-data.d.ts +17 -0
- package/backend/node_modules/tsconfig-paths/lib/__tests__/data/match-path-data.js +216 -0
- package/backend/node_modules/tsconfig-paths/lib/__tests__/data/match-path-data.js.map +1 -0
- package/backend/node_modules/tsconfig-paths/lib/__tests__/filesystem.test.d.ts +1 -0
- package/backend/node_modules/tsconfig-paths/lib/__tests__/filesystem.test.js +56 -0
- package/backend/node_modules/tsconfig-paths/lib/__tests__/filesystem.test.js.map +1 -0
- package/backend/node_modules/tsconfig-paths/lib/__tests__/mapping-entry.test.d.ts +1 -0
- package/backend/node_modules/tsconfig-paths/lib/__tests__/mapping-entry.test.js +39 -0
- package/backend/node_modules/tsconfig-paths/lib/__tests__/mapping-entry.test.js.map +1 -0
- package/backend/node_modules/tsconfig-paths/lib/__tests__/match-path-async.test.d.ts +1 -0
- package/backend/node_modules/tsconfig-paths/lib/__tests__/match-path-async.test.js +18 -0
- package/backend/node_modules/tsconfig-paths/lib/__tests__/match-path-async.test.js.map +1 -0
- package/backend/node_modules/tsconfig-paths/lib/__tests__/match-path-sync.test.d.ts +1 -0
- package/backend/node_modules/tsconfig-paths/lib/__tests__/match-path-sync.test.js +14 -0
- package/backend/node_modules/tsconfig-paths/lib/__tests__/match-path-sync.test.js.map +1 -0
- package/backend/node_modules/tsconfig-paths/lib/__tests__/try-path.test.d.ts +1 -0
- package/backend/node_modules/tsconfig-paths/lib/__tests__/try-path.test.js +124 -0
- package/backend/node_modules/tsconfig-paths/lib/__tests__/try-path.test.js.map +1 -0
- package/backend/node_modules/tsconfig-paths/lib/__tests__/tsconfig-loader.test.d.ts +1 -0
- package/backend/node_modules/tsconfig-paths/lib/__tests__/tsconfig-loader.test.js +328 -0
- package/backend/node_modules/tsconfig-paths/lib/__tests__/tsconfig-loader.test.js.map +1 -0
- package/backend/node_modules/tsconfig-paths/lib/config-loader.d.ts +33 -0
- package/backend/node_modules/tsconfig-paths/lib/config-loader.js +48 -0
- package/backend/node_modules/tsconfig-paths/lib/config-loader.js.map +1 -0
- package/backend/node_modules/tsconfig-paths/lib/filesystem.d.ts +34 -0
- package/backend/node_modules/tsconfig-paths/lib/filesystem.js +61 -0
- package/backend/node_modules/tsconfig-paths/lib/filesystem.js.map +1 -0
- package/backend/node_modules/tsconfig-paths/lib/index.d.ts +5 -0
- package/backend/node_modules/tsconfig-paths/lib/index.js +15 -0
- package/backend/node_modules/tsconfig-paths/lib/index.js.map +1 -0
- package/backend/node_modules/tsconfig-paths/lib/mapping-entry.d.ts +18 -0
- package/backend/node_modules/tsconfig-paths/lib/mapping-entry.js +54 -0
- package/backend/node_modules/tsconfig-paths/lib/mapping-entry.js.map +1 -0
- package/backend/node_modules/tsconfig-paths/lib/match-path-async.d.ts +21 -0
- package/backend/node_modules/tsconfig-paths/lib/match-path-async.js +116 -0
- package/backend/node_modules/tsconfig-paths/lib/match-path-async.js.map +1 -0
- package/backend/node_modules/tsconfig-paths/lib/match-path-sync.d.ts +32 -0
- package/backend/node_modules/tsconfig-paths/lib/match-path-sync.js +91 -0
- package/backend/node_modules/tsconfig-paths/lib/match-path-sync.js.map +1 -0
- package/backend/node_modules/tsconfig-paths/lib/register.d.ts +12 -0
- package/backend/node_modules/tsconfig-paths/lib/register.js +112 -0
- package/backend/node_modules/tsconfig-paths/lib/register.js.map +1 -0
- package/backend/node_modules/tsconfig-paths/lib/try-path.d.ts +15 -0
- package/backend/node_modules/tsconfig-paths/lib/try-path.js +91 -0
- package/backend/node_modules/tsconfig-paths/lib/try-path.js.map +1 -0
- package/backend/node_modules/tsconfig-paths/lib/tsconfig-loader.d.ts +28 -0
- package/backend/node_modules/tsconfig-paths/lib/tsconfig-loader.js +148 -0
- package/backend/node_modules/tsconfig-paths/lib/tsconfig-loader.js.map +1 -0
- package/backend/node_modules/tsconfig-paths/package.json +74 -0
- package/backend/node_modules/tsconfig-paths/register.js +1 -0
- package/backend/node_modules/tsconfig-paths/src/__tests__/config-loader.test.ts +101 -0
- package/backend/node_modules/tsconfig-paths/src/__tests__/data/match-path-data.ts +230 -0
- package/backend/node_modules/tsconfig-paths/src/__tests__/filesystem.test.ts +57 -0
- package/backend/node_modules/tsconfig-paths/src/__tests__/mapping-entry.test.ts +43 -0
- package/backend/node_modules/tsconfig-paths/src/__tests__/match-path-async.test.ts +26 -0
- package/backend/node_modules/tsconfig-paths/src/__tests__/match-path-sync.test.ts +22 -0
- package/backend/node_modules/tsconfig-paths/src/__tests__/try-path.test.ts +141 -0
- package/backend/node_modules/tsconfig-paths/src/__tests__/tsconfig-loader.test.ts +428 -0
- package/backend/node_modules/tsconfig-paths/src/__tests__/tsconfig-named.json +10 -0
- package/backend/node_modules/tsconfig-paths/src/config-loader.ts +89 -0
- package/backend/node_modules/tsconfig-paths/src/filesystem.ts +93 -0
- package/backend/node_modules/tsconfig-paths/src/index.ts +24 -0
- package/backend/node_modules/tsconfig-paths/src/mapping-entry.ts +65 -0
- package/backend/node_modules/tsconfig-paths/src/match-path-async.ts +223 -0
- package/backend/node_modules/tsconfig-paths/src/match-path-sync.ts +146 -0
- package/backend/node_modules/tsconfig-paths/src/register.ts +123 -0
- package/backend/node_modules/tsconfig-paths/src/try-path.ts +103 -0
- package/backend/node_modules/tsconfig-paths/src/tsconfig-loader.ts +229 -0
- package/package.json +1 -1
- package/backend/node_modules/brace-expansion/README.md +0 -129
- package/backend/node_modules/brace-expansion/index.js +0 -201
- package/backend/node_modules/brace-expansion/package.json +0 -50
- package/backend/node_modules/debug/LICENSE +0 -20
- package/backend/node_modules/debug/README.md +0 -481
- package/backend/node_modules/debug/package.json +0 -64
- package/backend/node_modules/debug/src/browser.js +0 -272
- package/backend/node_modules/debug/src/common.js +0 -292
- package/backend/node_modules/debug/src/index.js +0 -10
- package/backend/node_modules/debug/src/node.js +0 -263
- package/backend/node_modules/glob-parent/LICENSE +0 -15
- package/backend/node_modules/glob-parent/README.md +0 -134
- package/backend/node_modules/glob-parent/index.js +0 -75
- package/backend/node_modules/glob-parent/package.json +0 -54
- package/backend/node_modules/minimatch/LICENSE +0 -15
- package/backend/node_modules/minimatch/README.md +0 -230
- package/backend/node_modules/minimatch/minimatch.js +0 -947
- package/backend/node_modules/minimatch/package.json +0 -33
- package/backend/node_modules/ms/index.js +0 -162
- package/backend/node_modules/ms/package.json +0 -38
- package/backend/node_modules/ms/readme.md +0 -59
- package/backend/node_modules/strip-ansi/index.d.ts +0 -17
- package/backend/node_modules/strip-ansi/index.js +0 -4
- package/backend/node_modules/strip-ansi/readme.md +0 -46
- /package/backend/node_modules/{strip-ansi → ansi-styles}/license +0 -0
|
@@ -0,0 +1,229 @@
|
|
|
1
|
+
import * as path from "path";
|
|
2
|
+
import * as fs from "fs";
|
|
3
|
+
// eslint-disable-next-line @typescript-eslint/no-require-imports
|
|
4
|
+
import JSON5 = require("json5");
|
|
5
|
+
// eslint-disable-next-line @typescript-eslint/no-require-imports
|
|
6
|
+
import StripBom = require("strip-bom");
|
|
7
|
+
|
|
8
|
+
/**
|
|
9
|
+
* Typing for the parts of tsconfig that we care about
|
|
10
|
+
*/
|
|
11
|
+
export interface Tsconfig {
|
|
12
|
+
extends?: string | string[];
|
|
13
|
+
compilerOptions?: {
|
|
14
|
+
baseUrl?: string;
|
|
15
|
+
paths?: { [key: string]: Array<string> };
|
|
16
|
+
strict?: boolean;
|
|
17
|
+
};
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
export interface TsConfigLoaderResult {
|
|
21
|
+
tsConfigPath: string | undefined;
|
|
22
|
+
baseUrl: string | undefined;
|
|
23
|
+
paths: { [key: string]: Array<string> } | undefined;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
export interface TsConfigLoaderParams {
|
|
27
|
+
getEnv: (key: string) => string | undefined;
|
|
28
|
+
cwd: string;
|
|
29
|
+
loadSync?(
|
|
30
|
+
cwd: string,
|
|
31
|
+
filename?: string,
|
|
32
|
+
baseUrl?: string
|
|
33
|
+
): TsConfigLoaderResult;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
export function tsConfigLoader({
|
|
37
|
+
getEnv,
|
|
38
|
+
cwd,
|
|
39
|
+
loadSync = loadSyncDefault,
|
|
40
|
+
}: TsConfigLoaderParams): TsConfigLoaderResult {
|
|
41
|
+
const TS_NODE_PROJECT = getEnv("TS_NODE_PROJECT");
|
|
42
|
+
const TS_NODE_BASEURL = getEnv("TS_NODE_BASEURL");
|
|
43
|
+
|
|
44
|
+
// tsconfig.loadSync handles if TS_NODE_PROJECT is a file or directory
|
|
45
|
+
// and also overrides baseURL if TS_NODE_BASEURL is available.
|
|
46
|
+
const loadResult = loadSync(cwd, TS_NODE_PROJECT, TS_NODE_BASEURL);
|
|
47
|
+
return loadResult;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
function loadSyncDefault(
|
|
51
|
+
cwd: string,
|
|
52
|
+
filename?: string,
|
|
53
|
+
baseUrl?: string
|
|
54
|
+
): TsConfigLoaderResult {
|
|
55
|
+
// Tsconfig.loadSync uses path.resolve. This is why we can use an absolute path as filename
|
|
56
|
+
|
|
57
|
+
const configPath = resolveConfigPath(cwd, filename);
|
|
58
|
+
|
|
59
|
+
if (!configPath) {
|
|
60
|
+
return {
|
|
61
|
+
tsConfigPath: undefined,
|
|
62
|
+
baseUrl: undefined,
|
|
63
|
+
paths: undefined,
|
|
64
|
+
};
|
|
65
|
+
}
|
|
66
|
+
const config = loadTsconfig(configPath);
|
|
67
|
+
|
|
68
|
+
return {
|
|
69
|
+
tsConfigPath: configPath,
|
|
70
|
+
baseUrl:
|
|
71
|
+
baseUrl ||
|
|
72
|
+
(config && config.compilerOptions && config.compilerOptions.baseUrl),
|
|
73
|
+
paths: config && config.compilerOptions && config.compilerOptions.paths,
|
|
74
|
+
};
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
function resolveConfigPath(cwd: string, filename?: string): string | undefined {
|
|
78
|
+
if (filename) {
|
|
79
|
+
const absolutePath = fs.lstatSync(filename).isDirectory()
|
|
80
|
+
? path.resolve(filename, "./tsconfig.json")
|
|
81
|
+
: path.resolve(cwd, filename);
|
|
82
|
+
|
|
83
|
+
return absolutePath;
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
if (fs.statSync(cwd).isFile()) {
|
|
87
|
+
return path.resolve(cwd);
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
const configAbsolutePath = walkForTsConfig(cwd);
|
|
91
|
+
return configAbsolutePath ? path.resolve(configAbsolutePath) : undefined;
|
|
92
|
+
}
|
|
93
|
+
export function walkForTsConfig(
|
|
94
|
+
directory: string,
|
|
95
|
+
readdirSync: (path: string) => string[] = fs.readdirSync
|
|
96
|
+
): string | undefined {
|
|
97
|
+
const files = readdirSync(directory);
|
|
98
|
+
const filesToCheck = ["tsconfig.json", "jsconfig.json"];
|
|
99
|
+
for (const fileToCheck of filesToCheck) {
|
|
100
|
+
if (files.indexOf(fileToCheck) !== -1) {
|
|
101
|
+
return path.join(directory, fileToCheck);
|
|
102
|
+
}
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
const parentDirectory = path.dirname(directory);
|
|
106
|
+
|
|
107
|
+
// If we reached the top
|
|
108
|
+
if (directory === parentDirectory) {
|
|
109
|
+
return undefined;
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
return walkForTsConfig(parentDirectory, readdirSync);
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
export function loadTsconfig(
|
|
116
|
+
configFilePath: string,
|
|
117
|
+
// eslint-disable-next-line no-shadow
|
|
118
|
+
existsSync: (path: string) => boolean = fs.existsSync,
|
|
119
|
+
readFileSync: (filename: string) => string = (filename: string) =>
|
|
120
|
+
fs.readFileSync(filename, "utf8")
|
|
121
|
+
): Tsconfig | undefined {
|
|
122
|
+
if (!existsSync(configFilePath)) {
|
|
123
|
+
return undefined;
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
const configString = readFileSync(configFilePath);
|
|
127
|
+
const cleanedJson = StripBom(configString);
|
|
128
|
+
let config: Tsconfig;
|
|
129
|
+
try {
|
|
130
|
+
config = JSON5.parse(cleanedJson);
|
|
131
|
+
} catch (e) {
|
|
132
|
+
throw new Error(`${configFilePath} is malformed ${e.message}`);
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
let extendedConfig = config.extends;
|
|
136
|
+
if (extendedConfig) {
|
|
137
|
+
let base: Tsconfig;
|
|
138
|
+
|
|
139
|
+
if (Array.isArray(extendedConfig)) {
|
|
140
|
+
base = extendedConfig.reduce(
|
|
141
|
+
(currBase, extendedConfigElement) =>
|
|
142
|
+
mergeTsconfigs(
|
|
143
|
+
currBase,
|
|
144
|
+
loadTsconfigFromExtends(
|
|
145
|
+
configFilePath,
|
|
146
|
+
extendedConfigElement,
|
|
147
|
+
existsSync,
|
|
148
|
+
readFileSync
|
|
149
|
+
)
|
|
150
|
+
),
|
|
151
|
+
{}
|
|
152
|
+
);
|
|
153
|
+
} else {
|
|
154
|
+
base = loadTsconfigFromExtends(
|
|
155
|
+
configFilePath,
|
|
156
|
+
extendedConfig,
|
|
157
|
+
existsSync,
|
|
158
|
+
readFileSync
|
|
159
|
+
);
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
return mergeTsconfigs(base, config);
|
|
163
|
+
}
|
|
164
|
+
return config;
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
/**
|
|
168
|
+
* Intended to be called only from loadTsconfig.
|
|
169
|
+
* Parameters don't have defaults because they should use the same as loadTsconfig.
|
|
170
|
+
*/
|
|
171
|
+
function loadTsconfigFromExtends(
|
|
172
|
+
configFilePath: string,
|
|
173
|
+
extendedConfigValue: string,
|
|
174
|
+
// eslint-disable-next-line no-shadow
|
|
175
|
+
existsSync: (path: string) => boolean,
|
|
176
|
+
readFileSync: (filename: string) => string
|
|
177
|
+
): Tsconfig {
|
|
178
|
+
if (
|
|
179
|
+
typeof extendedConfigValue === "string" &&
|
|
180
|
+
extendedConfigValue.indexOf(".json") === -1
|
|
181
|
+
) {
|
|
182
|
+
extendedConfigValue += ".json";
|
|
183
|
+
}
|
|
184
|
+
const currentDir = path.dirname(configFilePath);
|
|
185
|
+
let extendedConfigPath = path.join(currentDir, extendedConfigValue);
|
|
186
|
+
if (
|
|
187
|
+
extendedConfigValue.indexOf("/") !== -1 &&
|
|
188
|
+
extendedConfigValue.indexOf(".") !== -1 &&
|
|
189
|
+
!existsSync(extendedConfigPath)
|
|
190
|
+
) {
|
|
191
|
+
extendedConfigPath = path.join(
|
|
192
|
+
currentDir,
|
|
193
|
+
"node_modules",
|
|
194
|
+
extendedConfigValue
|
|
195
|
+
);
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
const config =
|
|
199
|
+
loadTsconfig(extendedConfigPath, existsSync, readFileSync) || {};
|
|
200
|
+
|
|
201
|
+
// baseUrl should be interpreted as relative to extendedConfigPath,
|
|
202
|
+
// but we need to update it so it is relative to the original tsconfig being loaded
|
|
203
|
+
if (config.compilerOptions?.baseUrl) {
|
|
204
|
+
const extendsDir = path.dirname(extendedConfigValue);
|
|
205
|
+
config.compilerOptions.baseUrl = path.join(
|
|
206
|
+
extendsDir,
|
|
207
|
+
config.compilerOptions.baseUrl
|
|
208
|
+
);
|
|
209
|
+
}
|
|
210
|
+
|
|
211
|
+
return config;
|
|
212
|
+
}
|
|
213
|
+
|
|
214
|
+
function mergeTsconfigs(
|
|
215
|
+
base: Tsconfig | undefined,
|
|
216
|
+
config: Tsconfig | undefined
|
|
217
|
+
): Tsconfig {
|
|
218
|
+
base = base || {};
|
|
219
|
+
config = config || {};
|
|
220
|
+
|
|
221
|
+
return {
|
|
222
|
+
...base,
|
|
223
|
+
...config,
|
|
224
|
+
compilerOptions: {
|
|
225
|
+
...base.compilerOptions,
|
|
226
|
+
...config.compilerOptions,
|
|
227
|
+
},
|
|
228
|
+
};
|
|
229
|
+
}
|
package/package.json
CHANGED
|
@@ -1,129 +0,0 @@
|
|
|
1
|
-
# brace-expansion
|
|
2
|
-
|
|
3
|
-
[Brace expansion](https://www.gnu.org/software/bash/manual/html_node/Brace-Expansion.html),
|
|
4
|
-
as known from sh/bash, in JavaScript.
|
|
5
|
-
|
|
6
|
-
[](http://travis-ci.org/juliangruber/brace-expansion)
|
|
7
|
-
[](https://www.npmjs.org/package/brace-expansion)
|
|
8
|
-
[](https://greenkeeper.io/)
|
|
9
|
-
|
|
10
|
-
[](https://ci.testling.com/juliangruber/brace-expansion)
|
|
11
|
-
|
|
12
|
-
## Example
|
|
13
|
-
|
|
14
|
-
```js
|
|
15
|
-
var expand = require('brace-expansion');
|
|
16
|
-
|
|
17
|
-
expand('file-{a,b,c}.jpg')
|
|
18
|
-
// => ['file-a.jpg', 'file-b.jpg', 'file-c.jpg']
|
|
19
|
-
|
|
20
|
-
expand('-v{,,}')
|
|
21
|
-
// => ['-v', '-v', '-v']
|
|
22
|
-
|
|
23
|
-
expand('file{0..2}.jpg')
|
|
24
|
-
// => ['file0.jpg', 'file1.jpg', 'file2.jpg']
|
|
25
|
-
|
|
26
|
-
expand('file-{a..c}.jpg')
|
|
27
|
-
// => ['file-a.jpg', 'file-b.jpg', 'file-c.jpg']
|
|
28
|
-
|
|
29
|
-
expand('file{2..0}.jpg')
|
|
30
|
-
// => ['file2.jpg', 'file1.jpg', 'file0.jpg']
|
|
31
|
-
|
|
32
|
-
expand('file{0..4..2}.jpg')
|
|
33
|
-
// => ['file0.jpg', 'file2.jpg', 'file4.jpg']
|
|
34
|
-
|
|
35
|
-
expand('file-{a..e..2}.jpg')
|
|
36
|
-
// => ['file-a.jpg', 'file-c.jpg', 'file-e.jpg']
|
|
37
|
-
|
|
38
|
-
expand('file{00..10..5}.jpg')
|
|
39
|
-
// => ['file00.jpg', 'file05.jpg', 'file10.jpg']
|
|
40
|
-
|
|
41
|
-
expand('{{A..C},{a..c}}')
|
|
42
|
-
// => ['A', 'B', 'C', 'a', 'b', 'c']
|
|
43
|
-
|
|
44
|
-
expand('ppp{,config,oe{,conf}}')
|
|
45
|
-
// => ['ppp', 'pppconfig', 'pppoe', 'pppoeconf']
|
|
46
|
-
```
|
|
47
|
-
|
|
48
|
-
## API
|
|
49
|
-
|
|
50
|
-
```js
|
|
51
|
-
var expand = require('brace-expansion');
|
|
52
|
-
```
|
|
53
|
-
|
|
54
|
-
### var expanded = expand(str)
|
|
55
|
-
|
|
56
|
-
Return an array of all possible and valid expansions of `str`. If none are
|
|
57
|
-
found, `[str]` is returned.
|
|
58
|
-
|
|
59
|
-
Valid expansions are:
|
|
60
|
-
|
|
61
|
-
```js
|
|
62
|
-
/^(.*,)+(.+)?$/
|
|
63
|
-
// {a,b,...}
|
|
64
|
-
```
|
|
65
|
-
|
|
66
|
-
A comma separated list of options, like `{a,b}` or `{a,{b,c}}` or `{,a,}`.
|
|
67
|
-
|
|
68
|
-
```js
|
|
69
|
-
/^-?\d+\.\.-?\d+(\.\.-?\d+)?$/
|
|
70
|
-
// {x..y[..incr]}
|
|
71
|
-
```
|
|
72
|
-
|
|
73
|
-
A numeric sequence from `x` to `y` inclusive, with optional increment.
|
|
74
|
-
If `x` or `y` start with a leading `0`, all the numbers will be padded
|
|
75
|
-
to have equal length. Negative numbers and backwards iteration work too.
|
|
76
|
-
|
|
77
|
-
```js
|
|
78
|
-
/^-?\d+\.\.-?\d+(\.\.-?\d+)?$/
|
|
79
|
-
// {x..y[..incr]}
|
|
80
|
-
```
|
|
81
|
-
|
|
82
|
-
An alphabetic sequence from `x` to `y` inclusive, with optional increment.
|
|
83
|
-
`x` and `y` must be exactly one character, and if given, `incr` must be a
|
|
84
|
-
number.
|
|
85
|
-
|
|
86
|
-
For compatibility reasons, the string `${` is not eligible for brace expansion.
|
|
87
|
-
|
|
88
|
-
## Installation
|
|
89
|
-
|
|
90
|
-
With [npm](https://npmjs.org) do:
|
|
91
|
-
|
|
92
|
-
```bash
|
|
93
|
-
npm install brace-expansion
|
|
94
|
-
```
|
|
95
|
-
|
|
96
|
-
## Contributors
|
|
97
|
-
|
|
98
|
-
- [Julian Gruber](https://github.com/juliangruber)
|
|
99
|
-
- [Isaac Z. Schlueter](https://github.com/isaacs)
|
|
100
|
-
|
|
101
|
-
## Sponsors
|
|
102
|
-
|
|
103
|
-
This module is proudly supported by my [Sponsors](https://github.com/juliangruber/sponsors)!
|
|
104
|
-
|
|
105
|
-
Do you want to support modules like this to improve their quality, stability and weigh in on new features? Then please consider donating to my [Patreon](https://www.patreon.com/juliangruber). Not sure how much of my modules you're using? Try [feross/thanks](https://github.com/feross/thanks)!
|
|
106
|
-
|
|
107
|
-
## License
|
|
108
|
-
|
|
109
|
-
(MIT)
|
|
110
|
-
|
|
111
|
-
Copyright (c) 2013 Julian Gruber <julian@juliangruber.com>
|
|
112
|
-
|
|
113
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
114
|
-
this software and associated documentation files (the "Software"), to deal in
|
|
115
|
-
the Software without restriction, including without limitation the rights to
|
|
116
|
-
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
|
|
117
|
-
of the Software, and to permit persons to whom the Software is furnished to do
|
|
118
|
-
so, subject to the following conditions:
|
|
119
|
-
|
|
120
|
-
The above copyright notice and this permission notice shall be included in all
|
|
121
|
-
copies or substantial portions of the Software.
|
|
122
|
-
|
|
123
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
124
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
125
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
126
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
127
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
128
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
129
|
-
SOFTWARE.
|
|
@@ -1,201 +0,0 @@
|
|
|
1
|
-
var concatMap = require('concat-map');
|
|
2
|
-
var balanced = require('balanced-match');
|
|
3
|
-
|
|
4
|
-
module.exports = expandTop;
|
|
5
|
-
|
|
6
|
-
var escSlash = '\0SLASH'+Math.random()+'\0';
|
|
7
|
-
var escOpen = '\0OPEN'+Math.random()+'\0';
|
|
8
|
-
var escClose = '\0CLOSE'+Math.random()+'\0';
|
|
9
|
-
var escComma = '\0COMMA'+Math.random()+'\0';
|
|
10
|
-
var escPeriod = '\0PERIOD'+Math.random()+'\0';
|
|
11
|
-
|
|
12
|
-
function numeric(str) {
|
|
13
|
-
return parseInt(str, 10) == str
|
|
14
|
-
? parseInt(str, 10)
|
|
15
|
-
: str.charCodeAt(0);
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
function escapeBraces(str) {
|
|
19
|
-
return str.split('\\\\').join(escSlash)
|
|
20
|
-
.split('\\{').join(escOpen)
|
|
21
|
-
.split('\\}').join(escClose)
|
|
22
|
-
.split('\\,').join(escComma)
|
|
23
|
-
.split('\\.').join(escPeriod);
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
function unescapeBraces(str) {
|
|
27
|
-
return str.split(escSlash).join('\\')
|
|
28
|
-
.split(escOpen).join('{')
|
|
29
|
-
.split(escClose).join('}')
|
|
30
|
-
.split(escComma).join(',')
|
|
31
|
-
.split(escPeriod).join('.');
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
// Basically just str.split(","), but handling cases
|
|
36
|
-
// where we have nested braced sections, which should be
|
|
37
|
-
// treated as individual members, like {a,{b,c},d}
|
|
38
|
-
function parseCommaParts(str) {
|
|
39
|
-
if (!str)
|
|
40
|
-
return [''];
|
|
41
|
-
|
|
42
|
-
var parts = [];
|
|
43
|
-
var m = balanced('{', '}', str);
|
|
44
|
-
|
|
45
|
-
if (!m)
|
|
46
|
-
return str.split(',');
|
|
47
|
-
|
|
48
|
-
var pre = m.pre;
|
|
49
|
-
var body = m.body;
|
|
50
|
-
var post = m.post;
|
|
51
|
-
var p = pre.split(',');
|
|
52
|
-
|
|
53
|
-
p[p.length-1] += '{' + body + '}';
|
|
54
|
-
var postParts = parseCommaParts(post);
|
|
55
|
-
if (post.length) {
|
|
56
|
-
p[p.length-1] += postParts.shift();
|
|
57
|
-
p.push.apply(p, postParts);
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
parts.push.apply(parts, p);
|
|
61
|
-
|
|
62
|
-
return parts;
|
|
63
|
-
}
|
|
64
|
-
|
|
65
|
-
function expandTop(str) {
|
|
66
|
-
if (!str)
|
|
67
|
-
return [];
|
|
68
|
-
|
|
69
|
-
// I don't know why Bash 4.3 does this, but it does.
|
|
70
|
-
// Anything starting with {} will have the first two bytes preserved
|
|
71
|
-
// but *only* at the top level, so {},a}b will not expand to anything,
|
|
72
|
-
// but a{},b}c will be expanded to [a}c,abc].
|
|
73
|
-
// One could argue that this is a bug in Bash, but since the goal of
|
|
74
|
-
// this module is to match Bash's rules, we escape a leading {}
|
|
75
|
-
if (str.substr(0, 2) === '{}') {
|
|
76
|
-
str = '\\{\\}' + str.substr(2);
|
|
77
|
-
}
|
|
78
|
-
|
|
79
|
-
return expand(escapeBraces(str), true).map(unescapeBraces);
|
|
80
|
-
}
|
|
81
|
-
|
|
82
|
-
function identity(e) {
|
|
83
|
-
return e;
|
|
84
|
-
}
|
|
85
|
-
|
|
86
|
-
function embrace(str) {
|
|
87
|
-
return '{' + str + '}';
|
|
88
|
-
}
|
|
89
|
-
function isPadded(el) {
|
|
90
|
-
return /^-?0\d/.test(el);
|
|
91
|
-
}
|
|
92
|
-
|
|
93
|
-
function lte(i, y) {
|
|
94
|
-
return i <= y;
|
|
95
|
-
}
|
|
96
|
-
function gte(i, y) {
|
|
97
|
-
return i >= y;
|
|
98
|
-
}
|
|
99
|
-
|
|
100
|
-
function expand(str, isTop) {
|
|
101
|
-
var expansions = [];
|
|
102
|
-
|
|
103
|
-
var m = balanced('{', '}', str);
|
|
104
|
-
if (!m || /\$$/.test(m.pre)) return [str];
|
|
105
|
-
|
|
106
|
-
var isNumericSequence = /^-?\d+\.\.-?\d+(?:\.\.-?\d+)?$/.test(m.body);
|
|
107
|
-
var isAlphaSequence = /^[a-zA-Z]\.\.[a-zA-Z](?:\.\.-?\d+)?$/.test(m.body);
|
|
108
|
-
var isSequence = isNumericSequence || isAlphaSequence;
|
|
109
|
-
var isOptions = m.body.indexOf(',') >= 0;
|
|
110
|
-
if (!isSequence && !isOptions) {
|
|
111
|
-
// {a},b}
|
|
112
|
-
if (m.post.match(/,(?!,).*\}/)) {
|
|
113
|
-
str = m.pre + '{' + m.body + escClose + m.post;
|
|
114
|
-
return expand(str);
|
|
115
|
-
}
|
|
116
|
-
return [str];
|
|
117
|
-
}
|
|
118
|
-
|
|
119
|
-
var n;
|
|
120
|
-
if (isSequence) {
|
|
121
|
-
n = m.body.split(/\.\./);
|
|
122
|
-
} else {
|
|
123
|
-
n = parseCommaParts(m.body);
|
|
124
|
-
if (n.length === 1) {
|
|
125
|
-
// x{{a,b}}y ==> x{a}y x{b}y
|
|
126
|
-
n = expand(n[0], false).map(embrace);
|
|
127
|
-
if (n.length === 1) {
|
|
128
|
-
var post = m.post.length
|
|
129
|
-
? expand(m.post, false)
|
|
130
|
-
: [''];
|
|
131
|
-
return post.map(function(p) {
|
|
132
|
-
return m.pre + n[0] + p;
|
|
133
|
-
});
|
|
134
|
-
}
|
|
135
|
-
}
|
|
136
|
-
}
|
|
137
|
-
|
|
138
|
-
// at this point, n is the parts, and we know it's not a comma set
|
|
139
|
-
// with a single entry.
|
|
140
|
-
|
|
141
|
-
// no need to expand pre, since it is guaranteed to be free of brace-sets
|
|
142
|
-
var pre = m.pre;
|
|
143
|
-
var post = m.post.length
|
|
144
|
-
? expand(m.post, false)
|
|
145
|
-
: [''];
|
|
146
|
-
|
|
147
|
-
var N;
|
|
148
|
-
|
|
149
|
-
if (isSequence) {
|
|
150
|
-
var x = numeric(n[0]);
|
|
151
|
-
var y = numeric(n[1]);
|
|
152
|
-
var width = Math.max(n[0].length, n[1].length)
|
|
153
|
-
var incr = n.length == 3
|
|
154
|
-
? Math.abs(numeric(n[2]))
|
|
155
|
-
: 1;
|
|
156
|
-
var test = lte;
|
|
157
|
-
var reverse = y < x;
|
|
158
|
-
if (reverse) {
|
|
159
|
-
incr *= -1;
|
|
160
|
-
test = gte;
|
|
161
|
-
}
|
|
162
|
-
var pad = n.some(isPadded);
|
|
163
|
-
|
|
164
|
-
N = [];
|
|
165
|
-
|
|
166
|
-
for (var i = x; test(i, y); i += incr) {
|
|
167
|
-
var c;
|
|
168
|
-
if (isAlphaSequence) {
|
|
169
|
-
c = String.fromCharCode(i);
|
|
170
|
-
if (c === '\\')
|
|
171
|
-
c = '';
|
|
172
|
-
} else {
|
|
173
|
-
c = String(i);
|
|
174
|
-
if (pad) {
|
|
175
|
-
var need = width - c.length;
|
|
176
|
-
if (need > 0) {
|
|
177
|
-
var z = new Array(need + 1).join('0');
|
|
178
|
-
if (i < 0)
|
|
179
|
-
c = '-' + z + c.slice(1);
|
|
180
|
-
else
|
|
181
|
-
c = z + c;
|
|
182
|
-
}
|
|
183
|
-
}
|
|
184
|
-
}
|
|
185
|
-
N.push(c);
|
|
186
|
-
}
|
|
187
|
-
} else {
|
|
188
|
-
N = concatMap(n, function(el) { return expand(el, false) });
|
|
189
|
-
}
|
|
190
|
-
|
|
191
|
-
for (var j = 0; j < N.length; j++) {
|
|
192
|
-
for (var k = 0; k < post.length; k++) {
|
|
193
|
-
var expansion = pre + N[j] + post[k];
|
|
194
|
-
if (!isTop || isSequence || expansion)
|
|
195
|
-
expansions.push(expansion);
|
|
196
|
-
}
|
|
197
|
-
}
|
|
198
|
-
|
|
199
|
-
return expansions;
|
|
200
|
-
}
|
|
201
|
-
|
|
@@ -1,50 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "brace-expansion",
|
|
3
|
-
"description": "Brace expansion as known from sh/bash",
|
|
4
|
-
"version": "1.1.12",
|
|
5
|
-
"repository": {
|
|
6
|
-
"type": "git",
|
|
7
|
-
"url": "git://github.com/juliangruber/brace-expansion.git"
|
|
8
|
-
},
|
|
9
|
-
"homepage": "https://github.com/juliangruber/brace-expansion",
|
|
10
|
-
"main": "index.js",
|
|
11
|
-
"scripts": {
|
|
12
|
-
"test": "tape test/*.js",
|
|
13
|
-
"gentest": "bash test/generate.sh",
|
|
14
|
-
"bench": "matcha test/perf/bench.js"
|
|
15
|
-
},
|
|
16
|
-
"dependencies": {
|
|
17
|
-
"balanced-match": "^1.0.0",
|
|
18
|
-
"concat-map": "0.0.1"
|
|
19
|
-
},
|
|
20
|
-
"devDependencies": {
|
|
21
|
-
"matcha": "^0.7.0",
|
|
22
|
-
"tape": "^4.6.0"
|
|
23
|
-
},
|
|
24
|
-
"keywords": [],
|
|
25
|
-
"author": {
|
|
26
|
-
"name": "Julian Gruber",
|
|
27
|
-
"email": "mail@juliangruber.com",
|
|
28
|
-
"url": "http://juliangruber.com"
|
|
29
|
-
},
|
|
30
|
-
"license": "MIT",
|
|
31
|
-
"testling": {
|
|
32
|
-
"files": "test/*.js",
|
|
33
|
-
"browsers": [
|
|
34
|
-
"ie/8..latest",
|
|
35
|
-
"firefox/20..latest",
|
|
36
|
-
"firefox/nightly",
|
|
37
|
-
"chrome/25..latest",
|
|
38
|
-
"chrome/canary",
|
|
39
|
-
"opera/12..latest",
|
|
40
|
-
"opera/next",
|
|
41
|
-
"safari/5.1..latest",
|
|
42
|
-
"ipad/6.0..latest",
|
|
43
|
-
"iphone/6.0..latest",
|
|
44
|
-
"android-browser/4.2..latest"
|
|
45
|
-
]
|
|
46
|
-
},
|
|
47
|
-
"publishConfig": {
|
|
48
|
-
"tag": "1.x"
|
|
49
|
-
}
|
|
50
|
-
}
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
(The MIT License)
|
|
2
|
-
|
|
3
|
-
Copyright (c) 2014-2017 TJ Holowaychuk <tj@vision-media.ca>
|
|
4
|
-
Copyright (c) 2018-2021 Josh Junon
|
|
5
|
-
|
|
6
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy of this software
|
|
7
|
-
and associated documentation files (the 'Software'), to deal in the Software without restriction,
|
|
8
|
-
including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
9
|
-
and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,
|
|
10
|
-
subject to the following conditions:
|
|
11
|
-
|
|
12
|
-
The above copyright notice and this permission notice shall be included in all copies or substantial
|
|
13
|
-
portions of the Software.
|
|
14
|
-
|
|
15
|
-
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
|
|
16
|
-
LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
17
|
-
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
|
18
|
-
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
19
|
-
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
20
|
-
|