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,523 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @fileoverview `ConfigArray` class.
|
|
3
|
+
*
|
|
4
|
+
* `ConfigArray` class expresses the full of a configuration. It has the entry
|
|
5
|
+
* config file, base config files that were extended, loaded parsers, and loaded
|
|
6
|
+
* plugins.
|
|
7
|
+
*
|
|
8
|
+
* `ConfigArray` class provides three properties and two methods.
|
|
9
|
+
*
|
|
10
|
+
* - `pluginEnvironments`
|
|
11
|
+
* - `pluginProcessors`
|
|
12
|
+
* - `pluginRules`
|
|
13
|
+
* The `Map` objects that contain the members of all plugins that this
|
|
14
|
+
* config array contains. Those map objects don't have mutation methods.
|
|
15
|
+
* Those keys are the member ID such as `pluginId/memberName`.
|
|
16
|
+
* - `isRoot()`
|
|
17
|
+
* If `true` then this configuration has `root:true` property.
|
|
18
|
+
* - `extractConfig(filePath)`
|
|
19
|
+
* Extract the final configuration for a given file. This means merging
|
|
20
|
+
* every config array element which that `criteria` property matched. The
|
|
21
|
+
* `filePath` argument must be an absolute path.
|
|
22
|
+
*
|
|
23
|
+
* `ConfigArrayFactory` provides the loading logic of config files.
|
|
24
|
+
*
|
|
25
|
+
* @author Toru Nagashima <https://github.com/mysticatea>
|
|
26
|
+
*/
|
|
27
|
+
|
|
28
|
+
//------------------------------------------------------------------------------
|
|
29
|
+
// Requirements
|
|
30
|
+
//------------------------------------------------------------------------------
|
|
31
|
+
|
|
32
|
+
import { ExtractedConfig } from "./extracted-config.js";
|
|
33
|
+
import { IgnorePattern } from "./ignore-pattern.js";
|
|
34
|
+
|
|
35
|
+
//------------------------------------------------------------------------------
|
|
36
|
+
// Helpers
|
|
37
|
+
//------------------------------------------------------------------------------
|
|
38
|
+
|
|
39
|
+
// Define types for VSCode IntelliSense.
|
|
40
|
+
/** @typedef {import("../../shared/types").Environment} Environment */
|
|
41
|
+
/** @typedef {import("../../shared/types").GlobalConf} GlobalConf */
|
|
42
|
+
/** @typedef {import("../../shared/types").RuleConf} RuleConf */
|
|
43
|
+
/** @typedef {import("../../shared/types").Rule} Rule */
|
|
44
|
+
/** @typedef {import("../../shared/types").Plugin} Plugin */
|
|
45
|
+
/** @typedef {import("../../shared/types").Processor} Processor */
|
|
46
|
+
/** @typedef {import("./config-dependency").DependentParser} DependentParser */
|
|
47
|
+
/** @typedef {import("./config-dependency").DependentPlugin} DependentPlugin */
|
|
48
|
+
/** @typedef {import("./override-tester")["OverrideTester"]} OverrideTester */
|
|
49
|
+
|
|
50
|
+
/**
|
|
51
|
+
* @typedef {Object} ConfigArrayElement
|
|
52
|
+
* @property {string} name The name of this config element.
|
|
53
|
+
* @property {string} filePath The path to the source file of this config element.
|
|
54
|
+
* @property {InstanceType<OverrideTester>|null} criteria The tester for the `files` and `excludedFiles` of this config element.
|
|
55
|
+
* @property {Record<string, boolean>|undefined} env The environment settings.
|
|
56
|
+
* @property {Record<string, GlobalConf>|undefined} globals The global variable settings.
|
|
57
|
+
* @property {IgnorePattern|undefined} ignorePattern The ignore patterns.
|
|
58
|
+
* @property {boolean|undefined} noInlineConfig The flag that disables directive comments.
|
|
59
|
+
* @property {DependentParser|undefined} parser The parser loader.
|
|
60
|
+
* @property {Object|undefined} parserOptions The parser options.
|
|
61
|
+
* @property {Record<string, DependentPlugin>|undefined} plugins The plugin loaders.
|
|
62
|
+
* @property {string|undefined} processor The processor name to refer plugin's processor.
|
|
63
|
+
* @property {boolean|undefined} reportUnusedDisableDirectives The flag to report unused `eslint-disable` comments.
|
|
64
|
+
* @property {boolean|undefined} root The flag to express root.
|
|
65
|
+
* @property {Record<string, RuleConf>|undefined} rules The rule settings
|
|
66
|
+
* @property {Object|undefined} settings The shared settings.
|
|
67
|
+
* @property {"config" | "ignore" | "implicit-processor"} type The element type.
|
|
68
|
+
*/
|
|
69
|
+
|
|
70
|
+
/**
|
|
71
|
+
* @typedef {Object} ConfigArrayInternalSlots
|
|
72
|
+
* @property {Map<string, ExtractedConfig>} cache The cache to extract configs.
|
|
73
|
+
* @property {ReadonlyMap<string, Environment>|null} envMap The map from environment ID to environment definition.
|
|
74
|
+
* @property {ReadonlyMap<string, Processor>|null} processorMap The map from processor ID to environment definition.
|
|
75
|
+
* @property {ReadonlyMap<string, Rule>|null} ruleMap The map from rule ID to rule definition.
|
|
76
|
+
*/
|
|
77
|
+
|
|
78
|
+
/** @type {WeakMap<ConfigArray, ConfigArrayInternalSlots>} */
|
|
79
|
+
const internalSlotsMap = new class extends WeakMap {
|
|
80
|
+
get(key) {
|
|
81
|
+
let value = super.get(key);
|
|
82
|
+
|
|
83
|
+
if (!value) {
|
|
84
|
+
value = {
|
|
85
|
+
cache: new Map(),
|
|
86
|
+
envMap: null,
|
|
87
|
+
processorMap: null,
|
|
88
|
+
ruleMap: null
|
|
89
|
+
};
|
|
90
|
+
super.set(key, value);
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
return value;
|
|
94
|
+
}
|
|
95
|
+
}();
|
|
96
|
+
|
|
97
|
+
/**
|
|
98
|
+
* Get the indices which are matched to a given file.
|
|
99
|
+
* @param {ConfigArrayElement[]} elements The elements.
|
|
100
|
+
* @param {string} filePath The path to a target file.
|
|
101
|
+
* @returns {number[]} The indices.
|
|
102
|
+
*/
|
|
103
|
+
function getMatchedIndices(elements, filePath) {
|
|
104
|
+
const indices = [];
|
|
105
|
+
|
|
106
|
+
for (let i = elements.length - 1; i >= 0; --i) {
|
|
107
|
+
const element = elements[i];
|
|
108
|
+
|
|
109
|
+
if (!element.criteria || (filePath && element.criteria.test(filePath))) {
|
|
110
|
+
indices.push(i);
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
return indices;
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
/**
|
|
118
|
+
* Check if a value is a non-null object.
|
|
119
|
+
* @param {any} x The value to check.
|
|
120
|
+
* @returns {boolean} `true` if the value is a non-null object.
|
|
121
|
+
*/
|
|
122
|
+
function isNonNullObject(x) {
|
|
123
|
+
return typeof x === "object" && x !== null;
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
/**
|
|
127
|
+
* Merge two objects.
|
|
128
|
+
*
|
|
129
|
+
* Assign every property values of `y` to `x` if `x` doesn't have the property.
|
|
130
|
+
* If `x`'s property value is an object, it does recursive.
|
|
131
|
+
* @param {Object} target The destination to merge
|
|
132
|
+
* @param {Object|undefined} source The source to merge.
|
|
133
|
+
* @returns {void}
|
|
134
|
+
*/
|
|
135
|
+
function mergeWithoutOverwrite(target, source) {
|
|
136
|
+
if (!isNonNullObject(source)) {
|
|
137
|
+
return;
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
for (const key of Object.keys(source)) {
|
|
141
|
+
if (key === "__proto__") {
|
|
142
|
+
continue;
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
if (isNonNullObject(target[key])) {
|
|
146
|
+
mergeWithoutOverwrite(target[key], source[key]);
|
|
147
|
+
} else if (target[key] === void 0) {
|
|
148
|
+
if (isNonNullObject(source[key])) {
|
|
149
|
+
target[key] = Array.isArray(source[key]) ? [] : {};
|
|
150
|
+
mergeWithoutOverwrite(target[key], source[key]);
|
|
151
|
+
} else if (source[key] !== void 0) {
|
|
152
|
+
target[key] = source[key];
|
|
153
|
+
}
|
|
154
|
+
}
|
|
155
|
+
}
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
/**
|
|
159
|
+
* The error for plugin conflicts.
|
|
160
|
+
*/
|
|
161
|
+
class PluginConflictError extends Error {
|
|
162
|
+
|
|
163
|
+
/**
|
|
164
|
+
* Initialize this error object.
|
|
165
|
+
* @param {string} pluginId The plugin ID.
|
|
166
|
+
* @param {{filePath:string, importerName:string}[]} plugins The resolved plugins.
|
|
167
|
+
*/
|
|
168
|
+
constructor(pluginId, plugins) {
|
|
169
|
+
super(`Plugin "${pluginId}" was conflicted between ${plugins.map(p => `"${p.importerName}"`).join(" and ")}.`);
|
|
170
|
+
this.messageTemplate = "plugin-conflict";
|
|
171
|
+
this.messageData = { pluginId, plugins };
|
|
172
|
+
}
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
/**
|
|
176
|
+
* Merge plugins.
|
|
177
|
+
* `target`'s definition is prior to `source`'s.
|
|
178
|
+
* @param {Record<string, DependentPlugin>} target The destination to merge
|
|
179
|
+
* @param {Record<string, DependentPlugin>|undefined} source The source to merge.
|
|
180
|
+
* @returns {void}
|
|
181
|
+
*/
|
|
182
|
+
function mergePlugins(target, source) {
|
|
183
|
+
if (!isNonNullObject(source)) {
|
|
184
|
+
return;
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
for (const key of Object.keys(source)) {
|
|
188
|
+
if (key === "__proto__") {
|
|
189
|
+
continue;
|
|
190
|
+
}
|
|
191
|
+
const targetValue = target[key];
|
|
192
|
+
const sourceValue = source[key];
|
|
193
|
+
|
|
194
|
+
// Adopt the plugin which was found at first.
|
|
195
|
+
if (targetValue === void 0) {
|
|
196
|
+
if (sourceValue.error) {
|
|
197
|
+
throw sourceValue.error;
|
|
198
|
+
}
|
|
199
|
+
target[key] = sourceValue;
|
|
200
|
+
} else if (sourceValue.filePath !== targetValue.filePath) {
|
|
201
|
+
throw new PluginConflictError(key, [
|
|
202
|
+
{
|
|
203
|
+
filePath: targetValue.filePath,
|
|
204
|
+
importerName: targetValue.importerName
|
|
205
|
+
},
|
|
206
|
+
{
|
|
207
|
+
filePath: sourceValue.filePath,
|
|
208
|
+
importerName: sourceValue.importerName
|
|
209
|
+
}
|
|
210
|
+
]);
|
|
211
|
+
}
|
|
212
|
+
}
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
/**
|
|
216
|
+
* Merge rule configs.
|
|
217
|
+
* `target`'s definition is prior to `source`'s.
|
|
218
|
+
* @param {Record<string, Array>} target The destination to merge
|
|
219
|
+
* @param {Record<string, RuleConf>|undefined} source The source to merge.
|
|
220
|
+
* @returns {void}
|
|
221
|
+
*/
|
|
222
|
+
function mergeRuleConfigs(target, source) {
|
|
223
|
+
if (!isNonNullObject(source)) {
|
|
224
|
+
return;
|
|
225
|
+
}
|
|
226
|
+
|
|
227
|
+
for (const key of Object.keys(source)) {
|
|
228
|
+
if (key === "__proto__") {
|
|
229
|
+
continue;
|
|
230
|
+
}
|
|
231
|
+
const targetDef = target[key];
|
|
232
|
+
const sourceDef = source[key];
|
|
233
|
+
|
|
234
|
+
// Adopt the rule config which was found at first.
|
|
235
|
+
if (targetDef === void 0) {
|
|
236
|
+
if (Array.isArray(sourceDef)) {
|
|
237
|
+
target[key] = [...sourceDef];
|
|
238
|
+
} else {
|
|
239
|
+
target[key] = [sourceDef];
|
|
240
|
+
}
|
|
241
|
+
|
|
242
|
+
/*
|
|
243
|
+
* If the first found rule config is severity only and the current rule
|
|
244
|
+
* config has options, merge the severity and the options.
|
|
245
|
+
*/
|
|
246
|
+
} else if (
|
|
247
|
+
targetDef.length === 1 &&
|
|
248
|
+
Array.isArray(sourceDef) &&
|
|
249
|
+
sourceDef.length >= 2
|
|
250
|
+
) {
|
|
251
|
+
targetDef.push(...sourceDef.slice(1));
|
|
252
|
+
}
|
|
253
|
+
}
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
/**
|
|
257
|
+
* Create the extracted config.
|
|
258
|
+
* @param {ConfigArray} instance The config elements.
|
|
259
|
+
* @param {number[]} indices The indices to use.
|
|
260
|
+
* @returns {ExtractedConfig} The extracted config.
|
|
261
|
+
*/
|
|
262
|
+
function createConfig(instance, indices) {
|
|
263
|
+
const config = new ExtractedConfig();
|
|
264
|
+
const ignorePatterns = [];
|
|
265
|
+
|
|
266
|
+
// Merge elements.
|
|
267
|
+
for (const index of indices) {
|
|
268
|
+
const element = instance[index];
|
|
269
|
+
|
|
270
|
+
// Adopt the parser which was found at first.
|
|
271
|
+
if (!config.parser && element.parser) {
|
|
272
|
+
if (element.parser.error) {
|
|
273
|
+
throw element.parser.error;
|
|
274
|
+
}
|
|
275
|
+
config.parser = element.parser;
|
|
276
|
+
}
|
|
277
|
+
|
|
278
|
+
// Adopt the processor which was found at first.
|
|
279
|
+
if (!config.processor && element.processor) {
|
|
280
|
+
config.processor = element.processor;
|
|
281
|
+
}
|
|
282
|
+
|
|
283
|
+
// Adopt the noInlineConfig which was found at first.
|
|
284
|
+
if (config.noInlineConfig === void 0 && element.noInlineConfig !== void 0) {
|
|
285
|
+
config.noInlineConfig = element.noInlineConfig;
|
|
286
|
+
config.configNameOfNoInlineConfig = element.name;
|
|
287
|
+
}
|
|
288
|
+
|
|
289
|
+
// Adopt the reportUnusedDisableDirectives which was found at first.
|
|
290
|
+
if (config.reportUnusedDisableDirectives === void 0 && element.reportUnusedDisableDirectives !== void 0) {
|
|
291
|
+
config.reportUnusedDisableDirectives = element.reportUnusedDisableDirectives;
|
|
292
|
+
}
|
|
293
|
+
|
|
294
|
+
// Collect ignorePatterns
|
|
295
|
+
if (element.ignorePattern) {
|
|
296
|
+
ignorePatterns.push(element.ignorePattern);
|
|
297
|
+
}
|
|
298
|
+
|
|
299
|
+
// Merge others.
|
|
300
|
+
mergeWithoutOverwrite(config.env, element.env);
|
|
301
|
+
mergeWithoutOverwrite(config.globals, element.globals);
|
|
302
|
+
mergeWithoutOverwrite(config.parserOptions, element.parserOptions);
|
|
303
|
+
mergeWithoutOverwrite(config.settings, element.settings);
|
|
304
|
+
mergePlugins(config.plugins, element.plugins);
|
|
305
|
+
mergeRuleConfigs(config.rules, element.rules);
|
|
306
|
+
}
|
|
307
|
+
|
|
308
|
+
// Create the predicate function for ignore patterns.
|
|
309
|
+
if (ignorePatterns.length > 0) {
|
|
310
|
+
config.ignores = IgnorePattern.createIgnore(ignorePatterns.reverse());
|
|
311
|
+
}
|
|
312
|
+
|
|
313
|
+
return config;
|
|
314
|
+
}
|
|
315
|
+
|
|
316
|
+
/**
|
|
317
|
+
* Collect definitions.
|
|
318
|
+
* @template T, U
|
|
319
|
+
* @param {string} pluginId The plugin ID for prefix.
|
|
320
|
+
* @param {Record<string,T>} defs The definitions to collect.
|
|
321
|
+
* @param {Map<string, U>} map The map to output.
|
|
322
|
+
* @param {function(T): U} [normalize] The normalize function for each value.
|
|
323
|
+
* @returns {void}
|
|
324
|
+
*/
|
|
325
|
+
function collect(pluginId, defs, map, normalize) {
|
|
326
|
+
if (defs) {
|
|
327
|
+
const prefix = pluginId && `${pluginId}/`;
|
|
328
|
+
|
|
329
|
+
for (const [key, value] of Object.entries(defs)) {
|
|
330
|
+
map.set(
|
|
331
|
+
`${prefix}${key}`,
|
|
332
|
+
normalize ? normalize(value) : value
|
|
333
|
+
);
|
|
334
|
+
}
|
|
335
|
+
}
|
|
336
|
+
}
|
|
337
|
+
|
|
338
|
+
/**
|
|
339
|
+
* Normalize a rule definition.
|
|
340
|
+
* @param {Function|Rule} rule The rule definition to normalize.
|
|
341
|
+
* @returns {Rule} The normalized rule definition.
|
|
342
|
+
*/
|
|
343
|
+
function normalizePluginRule(rule) {
|
|
344
|
+
return typeof rule === "function" ? { create: rule } : rule;
|
|
345
|
+
}
|
|
346
|
+
|
|
347
|
+
/**
|
|
348
|
+
* Delete the mutation methods from a given map.
|
|
349
|
+
* @param {Map<any, any>} map The map object to delete.
|
|
350
|
+
* @returns {void}
|
|
351
|
+
*/
|
|
352
|
+
function deleteMutationMethods(map) {
|
|
353
|
+
Object.defineProperties(map, {
|
|
354
|
+
clear: { configurable: true, value: void 0 },
|
|
355
|
+
delete: { configurable: true, value: void 0 },
|
|
356
|
+
set: { configurable: true, value: void 0 }
|
|
357
|
+
});
|
|
358
|
+
}
|
|
359
|
+
|
|
360
|
+
/**
|
|
361
|
+
* Create `envMap`, `processorMap`, `ruleMap` with the plugins in the config array.
|
|
362
|
+
* @param {ConfigArrayElement[]} elements The config elements.
|
|
363
|
+
* @param {ConfigArrayInternalSlots} slots The internal slots.
|
|
364
|
+
* @returns {void}
|
|
365
|
+
*/
|
|
366
|
+
function initPluginMemberMaps(elements, slots) {
|
|
367
|
+
const processed = new Set();
|
|
368
|
+
|
|
369
|
+
slots.envMap = new Map();
|
|
370
|
+
slots.processorMap = new Map();
|
|
371
|
+
slots.ruleMap = new Map();
|
|
372
|
+
|
|
373
|
+
for (const element of elements) {
|
|
374
|
+
if (!element.plugins) {
|
|
375
|
+
continue;
|
|
376
|
+
}
|
|
377
|
+
|
|
378
|
+
for (const [pluginId, value] of Object.entries(element.plugins)) {
|
|
379
|
+
const plugin = value.definition;
|
|
380
|
+
|
|
381
|
+
if (!plugin || processed.has(pluginId)) {
|
|
382
|
+
continue;
|
|
383
|
+
}
|
|
384
|
+
processed.add(pluginId);
|
|
385
|
+
|
|
386
|
+
collect(pluginId, plugin.environments, slots.envMap);
|
|
387
|
+
collect(pluginId, plugin.processors, slots.processorMap);
|
|
388
|
+
collect(pluginId, plugin.rules, slots.ruleMap, normalizePluginRule);
|
|
389
|
+
}
|
|
390
|
+
}
|
|
391
|
+
|
|
392
|
+
deleteMutationMethods(slots.envMap);
|
|
393
|
+
deleteMutationMethods(slots.processorMap);
|
|
394
|
+
deleteMutationMethods(slots.ruleMap);
|
|
395
|
+
}
|
|
396
|
+
|
|
397
|
+
/**
|
|
398
|
+
* Create `envMap`, `processorMap`, `ruleMap` with the plugins in the config array.
|
|
399
|
+
* @param {ConfigArray} instance The config elements.
|
|
400
|
+
* @returns {ConfigArrayInternalSlots} The extracted config.
|
|
401
|
+
*/
|
|
402
|
+
function ensurePluginMemberMaps(instance) {
|
|
403
|
+
const slots = internalSlotsMap.get(instance);
|
|
404
|
+
|
|
405
|
+
if (!slots.ruleMap) {
|
|
406
|
+
initPluginMemberMaps(instance, slots);
|
|
407
|
+
}
|
|
408
|
+
|
|
409
|
+
return slots;
|
|
410
|
+
}
|
|
411
|
+
|
|
412
|
+
//------------------------------------------------------------------------------
|
|
413
|
+
// Public Interface
|
|
414
|
+
//------------------------------------------------------------------------------
|
|
415
|
+
|
|
416
|
+
/**
|
|
417
|
+
* The Config Array.
|
|
418
|
+
*
|
|
419
|
+
* `ConfigArray` instance contains all settings, parsers, and plugins.
|
|
420
|
+
* You need to call `ConfigArray#extractConfig(filePath)` method in order to
|
|
421
|
+
* extract, merge and get only the config data which is related to an arbitrary
|
|
422
|
+
* file.
|
|
423
|
+
* @extends {Array<ConfigArrayElement>}
|
|
424
|
+
*/
|
|
425
|
+
class ConfigArray extends Array {
|
|
426
|
+
|
|
427
|
+
/**
|
|
428
|
+
* Get the plugin environments.
|
|
429
|
+
* The returned map cannot be mutated.
|
|
430
|
+
* @type {ReadonlyMap<string, Environment>} The plugin environments.
|
|
431
|
+
*/
|
|
432
|
+
get pluginEnvironments() {
|
|
433
|
+
return ensurePluginMemberMaps(this).envMap;
|
|
434
|
+
}
|
|
435
|
+
|
|
436
|
+
/**
|
|
437
|
+
* Get the plugin processors.
|
|
438
|
+
* The returned map cannot be mutated.
|
|
439
|
+
* @type {ReadonlyMap<string, Processor>} The plugin processors.
|
|
440
|
+
*/
|
|
441
|
+
get pluginProcessors() {
|
|
442
|
+
return ensurePluginMemberMaps(this).processorMap;
|
|
443
|
+
}
|
|
444
|
+
|
|
445
|
+
/**
|
|
446
|
+
* Get the plugin rules.
|
|
447
|
+
* The returned map cannot be mutated.
|
|
448
|
+
* @returns {ReadonlyMap<string, Rule>} The plugin rules.
|
|
449
|
+
*/
|
|
450
|
+
get pluginRules() {
|
|
451
|
+
return ensurePluginMemberMaps(this).ruleMap;
|
|
452
|
+
}
|
|
453
|
+
|
|
454
|
+
/**
|
|
455
|
+
* Check if this config has `root` flag.
|
|
456
|
+
* @returns {boolean} `true` if this config array is root.
|
|
457
|
+
*/
|
|
458
|
+
isRoot() {
|
|
459
|
+
for (let i = this.length - 1; i >= 0; --i) {
|
|
460
|
+
const root = this[i].root;
|
|
461
|
+
|
|
462
|
+
if (typeof root === "boolean") {
|
|
463
|
+
return root;
|
|
464
|
+
}
|
|
465
|
+
}
|
|
466
|
+
return false;
|
|
467
|
+
}
|
|
468
|
+
|
|
469
|
+
/**
|
|
470
|
+
* Extract the config data which is related to a given file.
|
|
471
|
+
* @param {string} filePath The absolute path to the target file.
|
|
472
|
+
* @returns {ExtractedConfig} The extracted config data.
|
|
473
|
+
*/
|
|
474
|
+
extractConfig(filePath) {
|
|
475
|
+
const { cache } = internalSlotsMap.get(this);
|
|
476
|
+
const indices = getMatchedIndices(this, filePath);
|
|
477
|
+
const cacheKey = indices.join(",");
|
|
478
|
+
|
|
479
|
+
if (!cache.has(cacheKey)) {
|
|
480
|
+
cache.set(cacheKey, createConfig(this, indices));
|
|
481
|
+
}
|
|
482
|
+
|
|
483
|
+
return cache.get(cacheKey);
|
|
484
|
+
}
|
|
485
|
+
|
|
486
|
+
/**
|
|
487
|
+
* Check if a given path is an additional lint target.
|
|
488
|
+
* @param {string} filePath The absolute path to the target file.
|
|
489
|
+
* @returns {boolean} `true` if the file is an additional lint target.
|
|
490
|
+
*/
|
|
491
|
+
isAdditionalTargetPath(filePath) {
|
|
492
|
+
for (const { criteria, type } of this) {
|
|
493
|
+
if (
|
|
494
|
+
type === "config" &&
|
|
495
|
+
criteria &&
|
|
496
|
+
!criteria.endsWithWildcard &&
|
|
497
|
+
criteria.test(filePath)
|
|
498
|
+
) {
|
|
499
|
+
return true;
|
|
500
|
+
}
|
|
501
|
+
}
|
|
502
|
+
return false;
|
|
503
|
+
}
|
|
504
|
+
}
|
|
505
|
+
|
|
506
|
+
/**
|
|
507
|
+
* Get the used extracted configs.
|
|
508
|
+
* CLIEngine will use this method to collect used deprecated rules.
|
|
509
|
+
* @param {ConfigArray} instance The config array object to get.
|
|
510
|
+
* @returns {ExtractedConfig[]} The used extracted configs.
|
|
511
|
+
* @private
|
|
512
|
+
*/
|
|
513
|
+
function getUsedExtractedConfigs(instance) {
|
|
514
|
+
const { cache } = internalSlotsMap.get(instance);
|
|
515
|
+
|
|
516
|
+
return Array.from(cache.values());
|
|
517
|
+
}
|
|
518
|
+
|
|
519
|
+
|
|
520
|
+
export {
|
|
521
|
+
ConfigArray,
|
|
522
|
+
getUsedExtractedConfigs
|
|
523
|
+
};
|
|
@@ -0,0 +1,124 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @fileoverview `ConfigDependency` class.
|
|
3
|
+
*
|
|
4
|
+
* `ConfigDependency` class expresses a loaded parser or plugin.
|
|
5
|
+
*
|
|
6
|
+
* If the parser or plugin was loaded successfully, it has `definition` property
|
|
7
|
+
* and `filePath` property. Otherwise, it has `error` property.
|
|
8
|
+
*
|
|
9
|
+
* When `JSON.stringify()` converted a `ConfigDependency` object to a JSON, it
|
|
10
|
+
* omits `definition` property.
|
|
11
|
+
*
|
|
12
|
+
* `ConfigArrayFactory` creates `ConfigDependency` objects when it loads parsers
|
|
13
|
+
* or plugins.
|
|
14
|
+
*
|
|
15
|
+
* @author Toru Nagashima <https://github.com/mysticatea>
|
|
16
|
+
*/
|
|
17
|
+
|
|
18
|
+
import util from "util";
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
* The class is to store parsers or plugins.
|
|
22
|
+
* This class hides the loaded object from `JSON.stringify()` and `console.log`.
|
|
23
|
+
* @template T
|
|
24
|
+
*/
|
|
25
|
+
class ConfigDependency {
|
|
26
|
+
|
|
27
|
+
/**
|
|
28
|
+
* Initialize this instance.
|
|
29
|
+
* @param {Object} data The dependency data.
|
|
30
|
+
* @param {T} [data.definition] The dependency if the loading succeeded.
|
|
31
|
+
* @param {T} [data.original] The original, non-normalized dependency if the loading succeeded.
|
|
32
|
+
* @param {Error} [data.error] The error object if the loading failed.
|
|
33
|
+
* @param {string} [data.filePath] The actual path to the dependency if the loading succeeded.
|
|
34
|
+
* @param {string} data.id The ID of this dependency.
|
|
35
|
+
* @param {string} data.importerName The name of the config file which loads this dependency.
|
|
36
|
+
* @param {string} data.importerPath The path to the config file which loads this dependency.
|
|
37
|
+
*/
|
|
38
|
+
constructor({
|
|
39
|
+
definition = null,
|
|
40
|
+
original = null,
|
|
41
|
+
error = null,
|
|
42
|
+
filePath = null,
|
|
43
|
+
id,
|
|
44
|
+
importerName,
|
|
45
|
+
importerPath
|
|
46
|
+
}) {
|
|
47
|
+
|
|
48
|
+
/**
|
|
49
|
+
* The loaded dependency if the loading succeeded.
|
|
50
|
+
* @type {T|null}
|
|
51
|
+
*/
|
|
52
|
+
this.definition = definition;
|
|
53
|
+
|
|
54
|
+
/**
|
|
55
|
+
* The original dependency as loaded directly from disk if the loading succeeded.
|
|
56
|
+
* @type {T|null}
|
|
57
|
+
*/
|
|
58
|
+
this.original = original;
|
|
59
|
+
|
|
60
|
+
/**
|
|
61
|
+
* The error object if the loading failed.
|
|
62
|
+
* @type {Error|null}
|
|
63
|
+
*/
|
|
64
|
+
this.error = error;
|
|
65
|
+
|
|
66
|
+
/**
|
|
67
|
+
* The loaded dependency if the loading succeeded.
|
|
68
|
+
* @type {string|null}
|
|
69
|
+
*/
|
|
70
|
+
this.filePath = filePath;
|
|
71
|
+
|
|
72
|
+
/**
|
|
73
|
+
* The ID of this dependency.
|
|
74
|
+
* @type {string}
|
|
75
|
+
*/
|
|
76
|
+
this.id = id;
|
|
77
|
+
|
|
78
|
+
/**
|
|
79
|
+
* The name of the config file which loads this dependency.
|
|
80
|
+
* @type {string}
|
|
81
|
+
*/
|
|
82
|
+
this.importerName = importerName;
|
|
83
|
+
|
|
84
|
+
/**
|
|
85
|
+
* The path to the config file which loads this dependency.
|
|
86
|
+
* @type {string}
|
|
87
|
+
*/
|
|
88
|
+
this.importerPath = importerPath;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
// eslint-disable-next-line jsdoc/require-description
|
|
92
|
+
/**
|
|
93
|
+
* @returns {Object} a JSON compatible object.
|
|
94
|
+
*/
|
|
95
|
+
toJSON() {
|
|
96
|
+
const obj = this[util.inspect.custom]();
|
|
97
|
+
|
|
98
|
+
// Display `error.message` (`Error#message` is unenumerable).
|
|
99
|
+
if (obj.error instanceof Error) {
|
|
100
|
+
obj.error = { ...obj.error, message: obj.error.message };
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
return obj;
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
// eslint-disable-next-line jsdoc/require-description
|
|
107
|
+
/**
|
|
108
|
+
* @returns {Object} an object to display by `console.log()`.
|
|
109
|
+
*/
|
|
110
|
+
[util.inspect.custom]() {
|
|
111
|
+
const {
|
|
112
|
+
definition: _ignore1, // eslint-disable-line no-unused-vars
|
|
113
|
+
original: _ignore2, // eslint-disable-line no-unused-vars
|
|
114
|
+
...obj
|
|
115
|
+
} = this;
|
|
116
|
+
|
|
117
|
+
return obj;
|
|
118
|
+
}
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
/** @typedef {ConfigDependency<import("../../shared/types").Parser>} DependentParser */
|
|
122
|
+
/** @typedef {ConfigDependency<import("../../shared/types").Plugin>} DependentPlugin */
|
|
123
|
+
|
|
124
|
+
export { ConfigDependency };
|