@nikovirtala/projen-constructs 0.2.0 → 0.2.2
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/.jsii +1406 -66
- package/docs/api/.nojekyll +1 -0
- package/docs/api/assets/hierarchy.js +1 -0
- package/docs/api/assets/highlight.css +99 -0
- package/docs/api/assets/icons.js +18 -0
- package/docs/api/assets/icons.svg +1 -0
- package/docs/api/assets/main.js +60 -0
- package/docs/api/assets/navigation.js +1 -0
- package/docs/api/assets/search.js +1 -0
- package/docs/api/assets/style.css +1633 -0
- package/docs/api/classes/AwsCdkConstructLibraryProject.html +308 -0
- package/docs/api/classes/AwsCdkTypeScriptAppProject.html +306 -0
- package/docs/api/classes/JsiiProject.html +294 -0
- package/docs/api/classes/ProjectGenerator.html +38 -0
- package/docs/api/classes/TypeDoc.html +37 -0
- package/docs/api/classes/TypeScriptProject.html +294 -0
- package/docs/api/classes/Vitest.html +38 -0
- package/docs/api/enums/CommentStyle.html +11 -0
- package/docs/api/enums/CoverageProvider.html +7 -0
- package/docs/api/enums/CoverageReporter.html +11 -0
- package/docs/api/enums/EntryPointStrategy.html +11 -0
- package/docs/api/enums/Environment.html +12 -0
- package/docs/api/enums/LogLevel.html +13 -0
- package/docs/api/enums/Pool.html +17 -0
- package/docs/api/enums/ProjectType.html +47 -0
- package/docs/api/enums/Visibility.html +9 -0
- package/docs/api/functions/applyDefaults.html +1 -0
- package/docs/api/functions/toJson_TypeDocConfiguration.html +2 -0
- package/docs/api/hierarchy.html +1 -0
- package/docs/api/index.html +86 -0
- package/docs/api/interfaces/AwsCdkConstructLibraryProjectOptions.html +1075 -0
- package/docs/api/interfaces/AwsCdkTypeScriptAppProjectOptions.html +1026 -0
- package/docs/api/interfaces/Component.html +13 -0
- package/docs/api/interfaces/ComponentOptions.html +8 -0
- package/docs/api/interfaces/JsiiProjectOptions.html +1003 -0
- package/docs/api/interfaces/ProjectGeneratorOptions.html +49 -0
- package/docs/api/interfaces/TypeDocConfiguration.html +141 -0
- package/docs/api/interfaces/TypeDocOptions.html +9 -0
- package/docs/api/interfaces/TypeScriptProjectOptions.html +899 -0
- package/docs/api/interfaces/ValidationOptions.html +9 -0
- package/docs/api/interfaces/VitestConfigOptions.html +111 -0
- package/docs/api/interfaces/VitestOptions.html +13 -0
- package/docs/api/modules.html +1 -0
- package/docs/api/variables/defaultOptions.html +1 -0
- package/docs/api/variables/defaults.html +1 -0
- package/docs/api/variables/projectDefaultOptions.html +1 -0
- package/lib/components/typedoc.js +5 -1
- package/lib/components/vitest.js +1 -1
- package/lib/index.d.ts +1 -0
- package/lib/index.js +2 -1
- package/lib/project-generator.js +1 -1
- package/lib/projects/awscdk-construct-library.generated.js +1 -1
- package/lib/projects/awscdk-typescript-app.generated.js +1 -1
- package/lib/projects/jsii-options.generated.d.ts +11 -1
- package/lib/projects/jsii-options.generated.js +1 -1
- package/lib/projects/jsii.generated.js +5 -4
- package/lib/projects/typescript.generated.js +1 -1
- package/node_modules/@jsii/spec/LICENSE +202 -0
- package/node_modules/@jsii/spec/NOTICE +2 -0
- package/node_modules/@jsii/spec/README.md +13 -0
- package/node_modules/@jsii/spec/jest.config.mjs +9 -0
- package/node_modules/@jsii/spec/lib/assembly-utils.d.ts +59 -0
- package/node_modules/@jsii/spec/lib/assembly-utils.js +158 -0
- package/node_modules/@jsii/spec/lib/assembly.d.ts +920 -0
- package/node_modules/@jsii/spec/lib/assembly.js +203 -0
- package/node_modules/@jsii/spec/lib/configuration.d.ts +147 -0
- package/node_modules/@jsii/spec/lib/configuration.js +3 -0
- package/node_modules/@jsii/spec/lib/index.d.ts +7 -0
- package/node_modules/@jsii/spec/lib/index.js +23 -0
- package/node_modules/@jsii/spec/lib/name-tree.d.ts +60 -0
- package/node_modules/@jsii/spec/lib/name-tree.js +84 -0
- package/node_modules/@jsii/spec/lib/redirect.d.ts +33 -0
- package/node_modules/@jsii/spec/lib/redirect.js +46 -0
- package/node_modules/@jsii/spec/lib/validate-assembly.d.ts +4 -0
- package/node_modules/@jsii/spec/lib/validate-assembly.js +29 -0
- package/node_modules/@jsii/spec/package.json +41 -0
- package/node_modules/@jsii/spec/schema/assembly-redirect.schema.json +29 -0
- package/node_modules/@jsii/spec/schema/jsii-spec.schema.json +1110 -0
- package/node_modules/@mrgrain/jsii-struct-builder/LICENSE +202 -0
- package/node_modules/@mrgrain/jsii-struct-builder/README.md +387 -0
- package/node_modules/@mrgrain/jsii-struct-builder/lib/builder/index.d.ts +1 -0
- package/node_modules/@mrgrain/jsii-struct-builder/lib/builder/index.js +18 -0
- package/node_modules/@mrgrain/jsii-struct-builder/lib/builder/struct.d.ts +144 -0
- package/node_modules/@mrgrain/jsii-struct-builder/lib/builder/struct.js +163 -0
- package/node_modules/@mrgrain/jsii-struct-builder/lib/index.d.ts +3 -0
- package/node_modules/@mrgrain/jsii-struct-builder/lib/index.js +20 -0
- package/node_modules/@mrgrain/jsii-struct-builder/lib/private/assembly.d.ts +2 -0
- package/node_modules/@mrgrain/jsii-struct-builder/lib/private/assembly.js +76 -0
- package/node_modules/@mrgrain/jsii-struct-builder/lib/private/index.d.ts +2 -0
- package/node_modules/@mrgrain/jsii-struct-builder/lib/private/index.js +19 -0
- package/node_modules/@mrgrain/jsii-struct-builder/lib/private/utils.d.ts +2 -0
- package/node_modules/@mrgrain/jsii-struct-builder/lib/private/utils.js +14 -0
- package/node_modules/@mrgrain/jsii-struct-builder/lib/projen/index.d.ts +2 -0
- package/node_modules/@mrgrain/jsii-struct-builder/lib/projen/index.js +19 -0
- package/node_modules/@mrgrain/jsii-struct-builder/lib/projen/projen-struct.d.ts +90 -0
- package/node_modules/@mrgrain/jsii-struct-builder/lib/projen/projen-struct.js +112 -0
- package/node_modules/@mrgrain/jsii-struct-builder/lib/projen/ts-interface.d.ts +15 -0
- package/node_modules/@mrgrain/jsii-struct-builder/lib/projen/ts-interface.js +18 -0
- package/node_modules/@mrgrain/jsii-struct-builder/lib/renderer/index.d.ts +1 -0
- package/node_modules/@mrgrain/jsii-struct-builder/lib/renderer/index.js +18 -0
- package/node_modules/@mrgrain/jsii-struct-builder/lib/renderer/typescript.d.ts +53 -0
- package/node_modules/@mrgrain/jsii-struct-builder/lib/renderer/typescript.js +194 -0
- package/node_modules/@mrgrain/jsii-struct-builder/package.json +116 -0
- package/node_modules/ajv/.runkit_example.js +23 -0
- package/node_modules/ajv/LICENSE +22 -0
- package/node_modules/ajv/README.md +207 -0
- package/node_modules/ajv/dist/2019.d.ts +19 -0
- package/node_modules/ajv/dist/2019.js +61 -0
- package/node_modules/ajv/dist/2019.js.map +1 -0
- package/node_modules/ajv/dist/2020.d.ts +19 -0
- package/node_modules/ajv/dist/2020.js +55 -0
- package/node_modules/ajv/dist/2020.js.map +1 -0
- package/node_modules/ajv/dist/ajv.d.ts +18 -0
- package/node_modules/ajv/dist/ajv.js +50 -0
- package/node_modules/ajv/dist/ajv.js.map +1 -0
- package/node_modules/ajv/dist/compile/codegen/code.d.ts +40 -0
- package/node_modules/ajv/dist/compile/codegen/code.js +156 -0
- package/node_modules/ajv/dist/compile/codegen/code.js.map +1 -0
- package/node_modules/ajv/dist/compile/codegen/index.d.ts +79 -0
- package/node_modules/ajv/dist/compile/codegen/index.js +697 -0
- package/node_modules/ajv/dist/compile/codegen/index.js.map +1 -0
- package/node_modules/ajv/dist/compile/codegen/scope.d.ts +79 -0
- package/node_modules/ajv/dist/compile/codegen/scope.js +143 -0
- package/node_modules/ajv/dist/compile/codegen/scope.js.map +1 -0
- package/node_modules/ajv/dist/compile/errors.d.ts +13 -0
- package/node_modules/ajv/dist/compile/errors.js +123 -0
- package/node_modules/ajv/dist/compile/errors.js.map +1 -0
- package/node_modules/ajv/dist/compile/index.d.ts +80 -0
- package/node_modules/ajv/dist/compile/index.js +242 -0
- package/node_modules/ajv/dist/compile/index.js.map +1 -0
- package/node_modules/ajv/dist/compile/jtd/parse.d.ts +4 -0
- package/node_modules/ajv/dist/compile/jtd/parse.js +350 -0
- package/node_modules/ajv/dist/compile/jtd/parse.js.map +1 -0
- package/node_modules/ajv/dist/compile/jtd/serialize.d.ts +4 -0
- package/node_modules/ajv/dist/compile/jtd/serialize.js +229 -0
- package/node_modules/ajv/dist/compile/jtd/serialize.js.map +1 -0
- package/node_modules/ajv/dist/compile/jtd/types.d.ts +6 -0
- package/node_modules/ajv/dist/compile/jtd/types.js +14 -0
- package/node_modules/ajv/dist/compile/jtd/types.js.map +1 -0
- package/node_modules/ajv/dist/compile/names.d.ts +20 -0
- package/node_modules/ajv/dist/compile/names.js +28 -0
- package/node_modules/ajv/dist/compile/names.js.map +1 -0
- package/node_modules/ajv/dist/compile/ref_error.d.ts +6 -0
- package/node_modules/ajv/dist/compile/ref_error.js +12 -0
- package/node_modules/ajv/dist/compile/ref_error.js.map +1 -0
- package/node_modules/ajv/dist/compile/resolve.d.ts +12 -0
- package/node_modules/ajv/dist/compile/resolve.js +155 -0
- package/node_modules/ajv/dist/compile/resolve.js.map +1 -0
- package/node_modules/ajv/dist/compile/rules.d.ts +28 -0
- package/node_modules/ajv/dist/compile/rules.js +26 -0
- package/node_modules/ajv/dist/compile/rules.js.map +1 -0
- package/node_modules/ajv/dist/compile/util.d.ts +40 -0
- package/node_modules/ajv/dist/compile/util.js +178 -0
- package/node_modules/ajv/dist/compile/util.js.map +1 -0
- package/node_modules/ajv/dist/compile/validate/applicability.d.ts +6 -0
- package/node_modules/ajv/dist/compile/validate/applicability.js +19 -0
- package/node_modules/ajv/dist/compile/validate/applicability.js.map +1 -0
- package/node_modules/ajv/dist/compile/validate/boolSchema.d.ts +4 -0
- package/node_modules/ajv/dist/compile/validate/boolSchema.js +50 -0
- package/node_modules/ajv/dist/compile/validate/boolSchema.js.map +1 -0
- package/node_modules/ajv/dist/compile/validate/dataType.d.ts +17 -0
- package/node_modules/ajv/dist/compile/validate/dataType.js +203 -0
- package/node_modules/ajv/dist/compile/validate/dataType.js.map +1 -0
- package/node_modules/ajv/dist/compile/validate/defaults.d.ts +2 -0
- package/node_modules/ajv/dist/compile/validate/defaults.js +35 -0
- package/node_modules/ajv/dist/compile/validate/defaults.js.map +1 -0
- package/node_modules/ajv/dist/compile/validate/index.d.ts +42 -0
- package/node_modules/ajv/dist/compile/validate/index.js +520 -0
- package/node_modules/ajv/dist/compile/validate/index.js.map +1 -0
- package/node_modules/ajv/dist/compile/validate/keyword.d.ts +8 -0
- package/node_modules/ajv/dist/compile/validate/keyword.js +124 -0
- package/node_modules/ajv/dist/compile/validate/keyword.js.map +1 -0
- package/node_modules/ajv/dist/compile/validate/subschema.d.ts +47 -0
- package/node_modules/ajv/dist/compile/validate/subschema.js +81 -0
- package/node_modules/ajv/dist/compile/validate/subschema.js.map +1 -0
- package/node_modules/ajv/dist/core.d.ts +173 -0
- package/node_modules/ajv/dist/core.js +618 -0
- package/node_modules/ajv/dist/core.js.map +1 -0
- package/node_modules/ajv/dist/jtd.d.ts +47 -0
- package/node_modules/ajv/dist/jtd.js +72 -0
- package/node_modules/ajv/dist/jtd.js.map +1 -0
- package/node_modules/ajv/dist/refs/data.json +13 -0
- package/node_modules/ajv/dist/refs/json-schema-2019-09/index.d.ts +2 -0
- package/node_modules/ajv/dist/refs/json-schema-2019-09/index.js +28 -0
- package/node_modules/ajv/dist/refs/json-schema-2019-09/index.js.map +1 -0
- package/node_modules/ajv/dist/refs/json-schema-2019-09/meta/applicator.json +53 -0
- package/node_modules/ajv/dist/refs/json-schema-2019-09/meta/content.json +17 -0
- package/node_modules/ajv/dist/refs/json-schema-2019-09/meta/core.json +57 -0
- package/node_modules/ajv/dist/refs/json-schema-2019-09/meta/format.json +14 -0
- package/node_modules/ajv/dist/refs/json-schema-2019-09/meta/meta-data.json +37 -0
- package/node_modules/ajv/dist/refs/json-schema-2019-09/meta/validation.json +90 -0
- package/node_modules/ajv/dist/refs/json-schema-2019-09/schema.json +39 -0
- package/node_modules/ajv/dist/refs/json-schema-2020-12/index.d.ts +2 -0
- package/node_modules/ajv/dist/refs/json-schema-2020-12/index.js +30 -0
- package/node_modules/ajv/dist/refs/json-schema-2020-12/index.js.map +1 -0
- package/node_modules/ajv/dist/refs/json-schema-2020-12/meta/applicator.json +48 -0
- package/node_modules/ajv/dist/refs/json-schema-2020-12/meta/content.json +17 -0
- package/node_modules/ajv/dist/refs/json-schema-2020-12/meta/core.json +51 -0
- package/node_modules/ajv/dist/refs/json-schema-2020-12/meta/format-annotation.json +14 -0
- package/node_modules/ajv/dist/refs/json-schema-2020-12/meta/meta-data.json +37 -0
- package/node_modules/ajv/dist/refs/json-schema-2020-12/meta/unevaluated.json +15 -0
- package/node_modules/ajv/dist/refs/json-schema-2020-12/meta/validation.json +90 -0
- package/node_modules/ajv/dist/refs/json-schema-2020-12/schema.json +55 -0
- package/node_modules/ajv/dist/refs/json-schema-draft-06.json +137 -0
- package/node_modules/ajv/dist/refs/json-schema-draft-07.json +151 -0
- package/node_modules/ajv/dist/refs/json-schema-secure.json +88 -0
- package/node_modules/ajv/dist/refs/jtd-schema.d.ts +3 -0
- package/node_modules/ajv/dist/refs/jtd-schema.js +118 -0
- package/node_modules/ajv/dist/refs/jtd-schema.js.map +1 -0
- package/node_modules/ajv/dist/runtime/equal.d.ts +6 -0
- package/node_modules/ajv/dist/runtime/equal.js +7 -0
- package/node_modules/ajv/dist/runtime/equal.js.map +1 -0
- package/node_modules/ajv/dist/runtime/parseJson.d.ts +18 -0
- package/node_modules/ajv/dist/runtime/parseJson.js +185 -0
- package/node_modules/ajv/dist/runtime/parseJson.js.map +1 -0
- package/node_modules/ajv/dist/runtime/quote.d.ts +5 -0
- package/node_modules/ajv/dist/runtime/quote.js +30 -0
- package/node_modules/ajv/dist/runtime/quote.js.map +1 -0
- package/node_modules/ajv/dist/runtime/re2.d.ts +6 -0
- package/node_modules/ajv/dist/runtime/re2.js +6 -0
- package/node_modules/ajv/dist/runtime/re2.js.map +1 -0
- package/node_modules/ajv/dist/runtime/timestamp.d.ts +5 -0
- package/node_modules/ajv/dist/runtime/timestamp.js +42 -0
- package/node_modules/ajv/dist/runtime/timestamp.js.map +1 -0
- package/node_modules/ajv/dist/runtime/ucs2length.d.ts +5 -0
- package/node_modules/ajv/dist/runtime/ucs2length.js +24 -0
- package/node_modules/ajv/dist/runtime/ucs2length.js.map +1 -0
- package/node_modules/ajv/dist/runtime/uri.d.ts +6 -0
- package/node_modules/ajv/dist/runtime/uri.js +6 -0
- package/node_modules/ajv/dist/runtime/uri.js.map +1 -0
- package/node_modules/ajv/dist/runtime/validation_error.d.ts +7 -0
- package/node_modules/ajv/dist/runtime/validation_error.js +11 -0
- package/node_modules/ajv/dist/runtime/validation_error.js.map +1 -0
- package/node_modules/ajv/dist/standalone/index.d.ts +6 -0
- package/node_modules/ajv/dist/standalone/index.js +90 -0
- package/node_modules/ajv/dist/standalone/index.js.map +1 -0
- package/node_modules/ajv/dist/standalone/instance.d.ts +12 -0
- package/node_modules/ajv/dist/standalone/instance.js +35 -0
- package/node_modules/ajv/dist/standalone/instance.js.map +1 -0
- package/node_modules/ajv/dist/types/index.d.ts +183 -0
- package/node_modules/ajv/dist/types/index.js +3 -0
- package/node_modules/ajv/dist/types/index.js.map +1 -0
- package/node_modules/ajv/dist/types/json-schema.d.ts +125 -0
- package/node_modules/ajv/dist/types/json-schema.js +3 -0
- package/node_modules/ajv/dist/types/json-schema.js.map +1 -0
- package/node_modules/ajv/dist/types/jtd-schema.d.ts +174 -0
- package/node_modules/ajv/dist/types/jtd-schema.js +3 -0
- package/node_modules/ajv/dist/types/jtd-schema.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/applicator/additionalItems.d.ts +8 -0
- package/node_modules/ajv/dist/vocabularies/applicator/additionalItems.js +49 -0
- package/node_modules/ajv/dist/vocabularies/applicator/additionalItems.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/applicator/additionalProperties.d.ts +6 -0
- package/node_modules/ajv/dist/vocabularies/applicator/additionalProperties.js +106 -0
- package/node_modules/ajv/dist/vocabularies/applicator/additionalProperties.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/applicator/allOf.d.ts +3 -0
- package/node_modules/ajv/dist/vocabularies/applicator/allOf.js +23 -0
- package/node_modules/ajv/dist/vocabularies/applicator/allOf.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/applicator/anyOf.d.ts +4 -0
- package/node_modules/ajv/dist/vocabularies/applicator/anyOf.js +12 -0
- package/node_modules/ajv/dist/vocabularies/applicator/anyOf.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/applicator/contains.d.ts +7 -0
- package/node_modules/ajv/dist/vocabularies/applicator/contains.js +95 -0
- package/node_modules/ajv/dist/vocabularies/applicator/contains.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/applicator/dependencies.d.ts +21 -0
- package/node_modules/ajv/dist/vocabularies/applicator/dependencies.js +85 -0
- package/node_modules/ajv/dist/vocabularies/applicator/dependencies.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/applicator/dependentSchemas.d.ts +3 -0
- package/node_modules/ajv/dist/vocabularies/applicator/dependentSchemas.js +11 -0
- package/node_modules/ajv/dist/vocabularies/applicator/dependentSchemas.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/applicator/if.d.ts +6 -0
- package/node_modules/ajv/dist/vocabularies/applicator/if.js +66 -0
- package/node_modules/ajv/dist/vocabularies/applicator/if.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/applicator/index.d.ts +13 -0
- package/node_modules/ajv/dist/vocabularies/applicator/index.js +44 -0
- package/node_modules/ajv/dist/vocabularies/applicator/index.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/applicator/items.d.ts +5 -0
- package/node_modules/ajv/dist/vocabularies/applicator/items.js +52 -0
- package/node_modules/ajv/dist/vocabularies/applicator/items.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/applicator/items2020.d.ts +6 -0
- package/node_modules/ajv/dist/vocabularies/applicator/items2020.js +30 -0
- package/node_modules/ajv/dist/vocabularies/applicator/items2020.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/applicator/not.d.ts +4 -0
- package/node_modules/ajv/dist/vocabularies/applicator/not.js +26 -0
- package/node_modules/ajv/dist/vocabularies/applicator/not.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/applicator/oneOf.d.ts +6 -0
- package/node_modules/ajv/dist/vocabularies/applicator/oneOf.js +60 -0
- package/node_modules/ajv/dist/vocabularies/applicator/oneOf.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/applicator/patternProperties.d.ts +3 -0
- package/node_modules/ajv/dist/vocabularies/applicator/patternProperties.js +75 -0
- package/node_modules/ajv/dist/vocabularies/applicator/patternProperties.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/applicator/prefixItems.d.ts +3 -0
- package/node_modules/ajv/dist/vocabularies/applicator/prefixItems.js +12 -0
- package/node_modules/ajv/dist/vocabularies/applicator/prefixItems.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/applicator/properties.d.ts +3 -0
- package/node_modules/ajv/dist/vocabularies/applicator/properties.js +54 -0
- package/node_modules/ajv/dist/vocabularies/applicator/properties.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/applicator/propertyNames.d.ts +6 -0
- package/node_modules/ajv/dist/vocabularies/applicator/propertyNames.js +38 -0
- package/node_modules/ajv/dist/vocabularies/applicator/propertyNames.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/applicator/thenElse.d.ts +3 -0
- package/node_modules/ajv/dist/vocabularies/applicator/thenElse.js +13 -0
- package/node_modules/ajv/dist/vocabularies/applicator/thenElse.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/code.d.ts +17 -0
- package/node_modules/ajv/dist/vocabularies/code.js +131 -0
- package/node_modules/ajv/dist/vocabularies/code.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/core/id.d.ts +3 -0
- package/node_modules/ajv/dist/vocabularies/core/id.js +10 -0
- package/node_modules/ajv/dist/vocabularies/core/id.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/core/index.d.ts +3 -0
- package/node_modules/ajv/dist/vocabularies/core/index.js +16 -0
- package/node_modules/ajv/dist/vocabularies/core/index.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/core/ref.d.ts +8 -0
- package/node_modules/ajv/dist/vocabularies/core/ref.js +122 -0
- package/node_modules/ajv/dist/vocabularies/core/ref.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/discriminator/index.d.ts +5 -0
- package/node_modules/ajv/dist/vocabularies/discriminator/index.js +104 -0
- package/node_modules/ajv/dist/vocabularies/discriminator/index.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/discriminator/types.d.ts +10 -0
- package/node_modules/ajv/dist/vocabularies/discriminator/types.js +9 -0
- package/node_modules/ajv/dist/vocabularies/discriminator/types.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/draft2020.d.ts +3 -0
- package/node_modules/ajv/dist/vocabularies/draft2020.js +23 -0
- package/node_modules/ajv/dist/vocabularies/draft2020.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/draft7.d.ts +3 -0
- package/node_modules/ajv/dist/vocabularies/draft7.js +17 -0
- package/node_modules/ajv/dist/vocabularies/draft7.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/dynamic/dynamicAnchor.d.ts +5 -0
- package/node_modules/ajv/dist/vocabularies/dynamic/dynamicAnchor.js +30 -0
- package/node_modules/ajv/dist/vocabularies/dynamic/dynamicAnchor.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/dynamic/dynamicRef.d.ts +5 -0
- package/node_modules/ajv/dist/vocabularies/dynamic/dynamicRef.js +51 -0
- package/node_modules/ajv/dist/vocabularies/dynamic/dynamicRef.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/dynamic/index.d.ts +3 -0
- package/node_modules/ajv/dist/vocabularies/dynamic/index.js +9 -0
- package/node_modules/ajv/dist/vocabularies/dynamic/index.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/dynamic/recursiveAnchor.d.ts +3 -0
- package/node_modules/ajv/dist/vocabularies/dynamic/recursiveAnchor.js +16 -0
- package/node_modules/ajv/dist/vocabularies/dynamic/recursiveAnchor.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/dynamic/recursiveRef.d.ts +3 -0
- package/node_modules/ajv/dist/vocabularies/dynamic/recursiveRef.js +10 -0
- package/node_modules/ajv/dist/vocabularies/dynamic/recursiveRef.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/errors.d.ts +9 -0
- package/node_modules/ajv/dist/vocabularies/errors.js +3 -0
- package/node_modules/ajv/dist/vocabularies/errors.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/format/format.d.ts +8 -0
- package/node_modules/ajv/dist/vocabularies/format/format.js +92 -0
- package/node_modules/ajv/dist/vocabularies/format/format.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/format/index.d.ts +3 -0
- package/node_modules/ajv/dist/vocabularies/format/index.js +6 -0
- package/node_modules/ajv/dist/vocabularies/format/index.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/jtd/discriminator.d.ts +6 -0
- package/node_modules/ajv/dist/vocabularies/jtd/discriminator.js +71 -0
- package/node_modules/ajv/dist/vocabularies/jtd/discriminator.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/jtd/elements.d.ts +5 -0
- package/node_modules/ajv/dist/vocabularies/jtd/elements.js +24 -0
- package/node_modules/ajv/dist/vocabularies/jtd/elements.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/jtd/enum.d.ts +6 -0
- package/node_modules/ajv/dist/vocabularies/jtd/enum.js +43 -0
- package/node_modules/ajv/dist/vocabularies/jtd/enum.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/jtd/error.d.ts +9 -0
- package/node_modules/ajv/dist/vocabularies/jtd/error.js +20 -0
- package/node_modules/ajv/dist/vocabularies/jtd/error.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/jtd/index.d.ts +10 -0
- package/node_modules/ajv/dist/vocabularies/jtd/index.js +29 -0
- package/node_modules/ajv/dist/vocabularies/jtd/index.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/jtd/metadata.d.ts +5 -0
- package/node_modules/ajv/dist/vocabularies/jtd/metadata.js +25 -0
- package/node_modules/ajv/dist/vocabularies/jtd/metadata.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/jtd/nullable.d.ts +4 -0
- package/node_modules/ajv/dist/vocabularies/jtd/nullable.js +22 -0
- package/node_modules/ajv/dist/vocabularies/jtd/nullable.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/jtd/optionalProperties.d.ts +3 -0
- package/node_modules/ajv/dist/vocabularies/jtd/optionalProperties.js +15 -0
- package/node_modules/ajv/dist/vocabularies/jtd/optionalProperties.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/jtd/properties.d.ts +22 -0
- package/node_modules/ajv/dist/vocabularies/jtd/properties.js +149 -0
- package/node_modules/ajv/dist/vocabularies/jtd/properties.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/jtd/ref.d.ts +4 -0
- package/node_modules/ajv/dist/vocabularies/jtd/ref.js +67 -0
- package/node_modules/ajv/dist/vocabularies/jtd/ref.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/jtd/type.d.ts +10 -0
- package/node_modules/ajv/dist/vocabularies/jtd/type.js +69 -0
- package/node_modules/ajv/dist/vocabularies/jtd/type.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/jtd/union.d.ts +3 -0
- package/node_modules/ajv/dist/vocabularies/jtd/union.js +12 -0
- package/node_modules/ajv/dist/vocabularies/jtd/union.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/jtd/values.d.ts +5 -0
- package/node_modules/ajv/dist/vocabularies/jtd/values.js +51 -0
- package/node_modules/ajv/dist/vocabularies/jtd/values.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/metadata.d.ts +3 -0
- package/node_modules/ajv/dist/vocabularies/metadata.js +18 -0
- package/node_modules/ajv/dist/vocabularies/metadata.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/next.d.ts +3 -0
- package/node_modules/ajv/dist/vocabularies/next.js +8 -0
- package/node_modules/ajv/dist/vocabularies/next.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/unevaluated/index.d.ts +3 -0
- package/node_modules/ajv/dist/vocabularies/unevaluated/index.js +7 -0
- package/node_modules/ajv/dist/vocabularies/unevaluated/index.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedItems.d.ts +6 -0
- package/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedItems.js +40 -0
- package/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedItems.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedProperties.d.ts +6 -0
- package/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedProperties.js +65 -0
- package/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedProperties.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/validation/const.d.ts +6 -0
- package/node_modules/ajv/dist/vocabularies/validation/const.js +25 -0
- package/node_modules/ajv/dist/vocabularies/validation/const.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/validation/dependentRequired.d.ts +5 -0
- package/node_modules/ajv/dist/vocabularies/validation/dependentRequired.js +12 -0
- package/node_modules/ajv/dist/vocabularies/validation/dependentRequired.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/validation/enum.d.ts +8 -0
- package/node_modules/ajv/dist/vocabularies/validation/enum.js +48 -0
- package/node_modules/ajv/dist/vocabularies/validation/enum.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/validation/index.d.ts +16 -0
- package/node_modules/ajv/dist/vocabularies/validation/index.js +33 -0
- package/node_modules/ajv/dist/vocabularies/validation/index.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/validation/limitContains.d.ts +3 -0
- package/node_modules/ajv/dist/vocabularies/validation/limitContains.js +15 -0
- package/node_modules/ajv/dist/vocabularies/validation/limitContains.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/validation/limitItems.d.ts +3 -0
- package/node_modules/ajv/dist/vocabularies/validation/limitItems.js +24 -0
- package/node_modules/ajv/dist/vocabularies/validation/limitItems.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/validation/limitLength.d.ts +3 -0
- package/node_modules/ajv/dist/vocabularies/validation/limitLength.js +27 -0
- package/node_modules/ajv/dist/vocabularies/validation/limitLength.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/validation/limitNumber.d.ts +11 -0
- package/node_modules/ajv/dist/vocabularies/validation/limitNumber.js +27 -0
- package/node_modules/ajv/dist/vocabularies/validation/limitNumber.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/validation/limitProperties.d.ts +3 -0
- package/node_modules/ajv/dist/vocabularies/validation/limitProperties.js +24 -0
- package/node_modules/ajv/dist/vocabularies/validation/limitProperties.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/validation/multipleOf.d.ts +8 -0
- package/node_modules/ajv/dist/vocabularies/validation/multipleOf.js +26 -0
- package/node_modules/ajv/dist/vocabularies/validation/multipleOf.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/validation/pattern.d.ts +8 -0
- package/node_modules/ajv/dist/vocabularies/validation/pattern.js +24 -0
- package/node_modules/ajv/dist/vocabularies/validation/pattern.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/validation/required.d.ts +8 -0
- package/node_modules/ajv/dist/vocabularies/validation/required.js +79 -0
- package/node_modules/ajv/dist/vocabularies/validation/required.js.map +1 -0
- package/node_modules/ajv/dist/vocabularies/validation/uniqueItems.d.ts +9 -0
- package/node_modules/ajv/dist/vocabularies/validation/uniqueItems.js +64 -0
- package/node_modules/ajv/dist/vocabularies/validation/uniqueItems.js.map +1 -0
- package/node_modules/ajv/lib/2019.ts +81 -0
- package/node_modules/ajv/lib/2020.ts +75 -0
- package/node_modules/ajv/lib/ajv.ts +70 -0
- package/node_modules/ajv/lib/compile/codegen/code.ts +169 -0
- package/node_modules/ajv/lib/compile/codegen/index.ts +852 -0
- package/node_modules/ajv/lib/compile/codegen/scope.ts +215 -0
- package/node_modules/ajv/lib/compile/errors.ts +184 -0
- package/node_modules/ajv/lib/compile/index.ts +324 -0
- package/node_modules/ajv/lib/compile/jtd/parse.ts +411 -0
- package/node_modules/ajv/lib/compile/jtd/serialize.ts +266 -0
- package/node_modules/ajv/lib/compile/jtd/types.ts +16 -0
- package/node_modules/ajv/lib/compile/names.ts +27 -0
- package/node_modules/ajv/lib/compile/ref_error.ts +13 -0
- package/node_modules/ajv/lib/compile/resolve.ts +149 -0
- package/node_modules/ajv/lib/compile/rules.ts +50 -0
- package/node_modules/ajv/lib/compile/util.ts +213 -0
- package/node_modules/ajv/lib/compile/validate/applicability.ts +22 -0
- package/node_modules/ajv/lib/compile/validate/boolSchema.ts +47 -0
- package/node_modules/ajv/lib/compile/validate/dataType.ts +230 -0
- package/node_modules/ajv/lib/compile/validate/defaults.ts +32 -0
- package/node_modules/ajv/lib/compile/validate/index.ts +582 -0
- package/node_modules/ajv/lib/compile/validate/keyword.ts +171 -0
- package/node_modules/ajv/lib/compile/validate/subschema.ts +135 -0
- package/node_modules/ajv/lib/core.ts +891 -0
- package/node_modules/ajv/lib/jtd.ts +132 -0
- package/node_modules/ajv/lib/refs/data.json +13 -0
- package/node_modules/ajv/lib/refs/json-schema-2019-09/index.ts +28 -0
- package/node_modules/ajv/lib/refs/json-schema-2019-09/meta/applicator.json +53 -0
- package/node_modules/ajv/lib/refs/json-schema-2019-09/meta/content.json +17 -0
- package/node_modules/ajv/lib/refs/json-schema-2019-09/meta/core.json +57 -0
- package/node_modules/ajv/lib/refs/json-schema-2019-09/meta/format.json +14 -0
- package/node_modules/ajv/lib/refs/json-schema-2019-09/meta/meta-data.json +37 -0
- package/node_modules/ajv/lib/refs/json-schema-2019-09/meta/validation.json +90 -0
- package/node_modules/ajv/lib/refs/json-schema-2019-09/schema.json +39 -0
- package/node_modules/ajv/lib/refs/json-schema-2020-12/index.ts +30 -0
- package/node_modules/ajv/lib/refs/json-schema-2020-12/meta/applicator.json +48 -0
- package/node_modules/ajv/lib/refs/json-schema-2020-12/meta/content.json +17 -0
- package/node_modules/ajv/lib/refs/json-schema-2020-12/meta/core.json +51 -0
- package/node_modules/ajv/lib/refs/json-schema-2020-12/meta/format-annotation.json +14 -0
- package/node_modules/ajv/lib/refs/json-schema-2020-12/meta/meta-data.json +37 -0
- package/node_modules/ajv/lib/refs/json-schema-2020-12/meta/unevaluated.json +15 -0
- package/node_modules/ajv/lib/refs/json-schema-2020-12/meta/validation.json +90 -0
- package/node_modules/ajv/lib/refs/json-schema-2020-12/schema.json +55 -0
- package/node_modules/ajv/lib/refs/json-schema-draft-06.json +137 -0
- package/node_modules/ajv/lib/refs/json-schema-draft-07.json +151 -0
- package/node_modules/ajv/lib/refs/json-schema-secure.json +88 -0
- package/node_modules/ajv/lib/refs/jtd-schema.ts +130 -0
- package/node_modules/ajv/lib/runtime/equal.ts +7 -0
- package/node_modules/ajv/lib/runtime/parseJson.ts +177 -0
- package/node_modules/ajv/lib/runtime/quote.ts +31 -0
- package/node_modules/ajv/lib/runtime/re2.ts +6 -0
- package/node_modules/ajv/lib/runtime/timestamp.ts +46 -0
- package/node_modules/ajv/lib/runtime/ucs2length.ts +20 -0
- package/node_modules/ajv/lib/runtime/uri.ts +6 -0
- package/node_modules/ajv/lib/runtime/validation_error.ts +13 -0
- package/node_modules/ajv/lib/standalone/index.ts +100 -0
- package/node_modules/ajv/lib/standalone/instance.ts +36 -0
- package/node_modules/ajv/lib/types/index.ts +244 -0
- package/node_modules/ajv/lib/types/json-schema.ts +187 -0
- package/node_modules/ajv/lib/types/jtd-schema.ts +273 -0
- package/node_modules/ajv/lib/vocabularies/applicator/additionalItems.ts +56 -0
- package/node_modules/ajv/lib/vocabularies/applicator/additionalProperties.ts +118 -0
- package/node_modules/ajv/lib/vocabularies/applicator/allOf.ts +22 -0
- package/node_modules/ajv/lib/vocabularies/applicator/anyOf.ts +14 -0
- package/node_modules/ajv/lib/vocabularies/applicator/contains.ts +109 -0
- package/node_modules/ajv/lib/vocabularies/applicator/dependencies.ts +112 -0
- package/node_modules/ajv/lib/vocabularies/applicator/dependentSchemas.ts +11 -0
- package/node_modules/ajv/lib/vocabularies/applicator/if.ts +80 -0
- package/node_modules/ajv/lib/vocabularies/applicator/index.ts +53 -0
- package/node_modules/ajv/lib/vocabularies/applicator/items.ts +59 -0
- package/node_modules/ajv/lib/vocabularies/applicator/items2020.ts +36 -0
- package/node_modules/ajv/lib/vocabularies/applicator/not.ts +38 -0
- package/node_modules/ajv/lib/vocabularies/applicator/oneOf.ts +82 -0
- package/node_modules/ajv/lib/vocabularies/applicator/patternProperties.ts +91 -0
- package/node_modules/ajv/lib/vocabularies/applicator/prefixItems.ts +12 -0
- package/node_modules/ajv/lib/vocabularies/applicator/properties.ts +57 -0
- package/node_modules/ajv/lib/vocabularies/applicator/propertyNames.ts +50 -0
- package/node_modules/ajv/lib/vocabularies/applicator/thenElse.ts +13 -0
- package/node_modules/ajv/lib/vocabularies/code.ts +168 -0
- package/node_modules/ajv/lib/vocabularies/core/id.ts +10 -0
- package/node_modules/ajv/lib/vocabularies/core/index.ts +16 -0
- package/node_modules/ajv/lib/vocabularies/core/ref.ts +129 -0
- package/node_modules/ajv/lib/vocabularies/discriminator/index.ts +113 -0
- package/node_modules/ajv/lib/vocabularies/discriminator/types.ts +12 -0
- package/node_modules/ajv/lib/vocabularies/draft2020.ts +23 -0
- package/node_modules/ajv/lib/vocabularies/draft7.ts +17 -0
- package/node_modules/ajv/lib/vocabularies/dynamic/dynamicAnchor.ts +31 -0
- package/node_modules/ajv/lib/vocabularies/dynamic/dynamicRef.ts +51 -0
- package/node_modules/ajv/lib/vocabularies/dynamic/index.ts +9 -0
- package/node_modules/ajv/lib/vocabularies/dynamic/recursiveAnchor.ts +14 -0
- package/node_modules/ajv/lib/vocabularies/dynamic/recursiveRef.ts +10 -0
- package/node_modules/ajv/lib/vocabularies/errors.ts +18 -0
- package/node_modules/ajv/lib/vocabularies/format/format.ts +120 -0
- package/node_modules/ajv/lib/vocabularies/format/index.ts +6 -0
- package/node_modules/ajv/lib/vocabularies/jtd/discriminator.ts +89 -0
- package/node_modules/ajv/lib/vocabularies/jtd/elements.ts +32 -0
- package/node_modules/ajv/lib/vocabularies/jtd/enum.ts +45 -0
- package/node_modules/ajv/lib/vocabularies/jtd/error.ts +23 -0
- package/node_modules/ajv/lib/vocabularies/jtd/index.ts +37 -0
- package/node_modules/ajv/lib/vocabularies/jtd/metadata.ts +24 -0
- package/node_modules/ajv/lib/vocabularies/jtd/nullable.ts +21 -0
- package/node_modules/ajv/lib/vocabularies/jtd/optionalProperties.ts +15 -0
- package/node_modules/ajv/lib/vocabularies/jtd/properties.ts +184 -0
- package/node_modules/ajv/lib/vocabularies/jtd/ref.ts +76 -0
- package/node_modules/ajv/lib/vocabularies/jtd/type.ts +75 -0
- package/node_modules/ajv/lib/vocabularies/jtd/union.ts +12 -0
- package/node_modules/ajv/lib/vocabularies/jtd/values.ts +58 -0
- package/node_modules/ajv/lib/vocabularies/metadata.ts +17 -0
- package/node_modules/ajv/lib/vocabularies/next.ts +8 -0
- package/node_modules/ajv/lib/vocabularies/unevaluated/index.ts +7 -0
- package/node_modules/ajv/lib/vocabularies/unevaluated/unevaluatedItems.ts +47 -0
- package/node_modules/ajv/lib/vocabularies/unevaluated/unevaluatedProperties.ts +85 -0
- package/node_modules/ajv/lib/vocabularies/validation/const.ts +28 -0
- package/node_modules/ajv/lib/vocabularies/validation/dependentRequired.ts +23 -0
- package/node_modules/ajv/lib/vocabularies/validation/enum.ts +54 -0
- package/node_modules/ajv/lib/vocabularies/validation/index.ts +49 -0
- package/node_modules/ajv/lib/vocabularies/validation/limitContains.ts +16 -0
- package/node_modules/ajv/lib/vocabularies/validation/limitItems.ts +26 -0
- package/node_modules/ajv/lib/vocabularies/validation/limitLength.ts +30 -0
- package/node_modules/ajv/lib/vocabularies/validation/limitNumber.ts +42 -0
- package/node_modules/ajv/lib/vocabularies/validation/limitProperties.ts +26 -0
- package/node_modules/ajv/lib/vocabularies/validation/multipleOf.ts +34 -0
- package/node_modules/ajv/lib/vocabularies/validation/pattern.ts +28 -0
- package/node_modules/ajv/lib/vocabularies/validation/required.ts +98 -0
- package/node_modules/ajv/lib/vocabularies/validation/uniqueItems.ts +79 -0
- package/node_modules/ajv/package.json +126 -0
- package/node_modules/fast-deep-equal/LICENSE +21 -0
- package/node_modules/fast-deep-equal/README.md +96 -0
- package/node_modules/fast-deep-equal/es6/index.d.ts +2 -0
- package/node_modules/fast-deep-equal/es6/index.js +72 -0
- package/node_modules/fast-deep-equal/es6/react.d.ts +2 -0
- package/node_modules/fast-deep-equal/es6/react.js +79 -0
- package/node_modules/fast-deep-equal/index.d.ts +4 -0
- package/node_modules/fast-deep-equal/index.js +46 -0
- package/node_modules/fast-deep-equal/package.json +61 -0
- package/node_modules/fast-deep-equal/react.d.ts +2 -0
- package/node_modules/fast-deep-equal/react.js +53 -0
- package/node_modules/fast-uri/.gitattributes +2 -0
- package/node_modules/fast-uri/.github/.stale.yml +21 -0
- package/node_modules/fast-uri/.github/dependabot.yml +13 -0
- package/node_modules/fast-uri/.github/tests_checker.yml +8 -0
- package/node_modules/fast-uri/.github/workflows/ci.yml +101 -0
- package/node_modules/fast-uri/.github/workflows/package-manager-ci.yml +24 -0
- package/node_modules/fast-uri/LICENSE +32 -0
- package/node_modules/fast-uri/README.md +143 -0
- package/node_modules/fast-uri/benchmark/benchmark.mjs +159 -0
- package/node_modules/fast-uri/benchmark/equal.mjs +51 -0
- package/node_modules/fast-uri/benchmark/non-simple-domain.mjs +22 -0
- package/node_modules/fast-uri/benchmark/package.json +17 -0
- package/node_modules/fast-uri/benchmark/string-array-to-hex-stripped.mjs +24 -0
- package/node_modules/fast-uri/benchmark/ws-is-secure.mjs +65 -0
- package/node_modules/fast-uri/eslint.config.js +6 -0
- package/node_modules/fast-uri/index.js +340 -0
- package/node_modules/fast-uri/lib/schemes.js +267 -0
- package/node_modules/fast-uri/lib/utils.js +336 -0
- package/node_modules/fast-uri/package.json +69 -0
- package/node_modules/fast-uri/test/ajv.test.js +43 -0
- package/node_modules/fast-uri/test/equal.test.js +108 -0
- package/node_modules/fast-uri/test/fixtures/uri-js-parse.json +501 -0
- package/node_modules/fast-uri/test/fixtures/uri-js-serialize.json +120 -0
- package/node_modules/fast-uri/test/parse.test.js +318 -0
- package/node_modules/fast-uri/test/resolve.test.js +78 -0
- package/node_modules/fast-uri/test/rfc-3986.test.js +90 -0
- package/node_modules/fast-uri/test/serialize.test.js +151 -0
- package/node_modules/fast-uri/test/uri-js-compatibility.test.js +33 -0
- package/node_modules/fast-uri/test/uri-js.test.js +912 -0
- package/node_modules/fast-uri/test/util.test.js +38 -0
- package/node_modules/fast-uri/tsconfig.json +9 -0
- package/node_modules/fast-uri/types/index.d.ts +60 -0
- package/node_modules/fast-uri/types/index.test-d.ts +17 -0
- package/node_modules/json-schema-traverse/.eslintrc.yml +27 -0
- package/node_modules/json-schema-traverse/.github/FUNDING.yml +2 -0
- package/node_modules/json-schema-traverse/.github/workflows/build.yml +28 -0
- package/node_modules/json-schema-traverse/.github/workflows/publish.yml +27 -0
- package/node_modules/json-schema-traverse/LICENSE +21 -0
- package/node_modules/json-schema-traverse/README.md +95 -0
- package/node_modules/json-schema-traverse/index.d.ts +40 -0
- package/node_modules/json-schema-traverse/index.js +93 -0
- package/node_modules/json-schema-traverse/package.json +43 -0
- package/node_modules/json-schema-traverse/spec/.eslintrc.yml +6 -0
- package/node_modules/json-schema-traverse/spec/fixtures/schema.js +125 -0
- package/node_modules/json-schema-traverse/spec/index.spec.js +171 -0
- package/node_modules/require-from-string/index.js +34 -0
- package/node_modules/require-from-string/license +21 -0
- package/node_modules/require-from-string/package.json +28 -0
- package/node_modules/require-from-string/readme.md +56 -0
- package/package.json +5 -2
- package/typedoc.jsonc +10 -0
package/.jsii
CHANGED
|
@@ -7,6 +7,7 @@
|
|
|
7
7
|
]
|
|
8
8
|
},
|
|
9
9
|
"bundled": {
|
|
10
|
+
"@mrgrain/jsii-struct-builder": "^0.7.64",
|
|
10
11
|
"case": "^1.6.3"
|
|
11
12
|
},
|
|
12
13
|
"dependencies": {
|
|
@@ -10373,6 +10374,52 @@
|
|
|
10373
10374
|
],
|
|
10374
10375
|
"symbolId": "src/projects/awscdk-typescript-app-options.generated:AwsCdkTypeScriptAppProjectOptions"
|
|
10375
10376
|
},
|
|
10377
|
+
"@nikovirtala/projen-constructs.CommentStyle": {
|
|
10378
|
+
"assembly": "@nikovirtala/projen-constructs",
|
|
10379
|
+
"docs": {
|
|
10380
|
+
"see": "https://typedoc.org/documents/Options.Comments.html#commentstyle",
|
|
10381
|
+
"stability": "stable",
|
|
10382
|
+
"summary": "Specifies the documentation mode TypeDoc should use."
|
|
10383
|
+
},
|
|
10384
|
+
"fqn": "@nikovirtala/projen-constructs.CommentStyle",
|
|
10385
|
+
"kind": "enum",
|
|
10386
|
+
"locationInModule": {
|
|
10387
|
+
"filename": "src/components/typedoc-config.ts",
|
|
10388
|
+
"line": 454
|
|
10389
|
+
},
|
|
10390
|
+
"members": [
|
|
10391
|
+
{
|
|
10392
|
+
"docs": {
|
|
10393
|
+
"stability": "stable",
|
|
10394
|
+
"summary": "Parse JSDoc style comments only."
|
|
10395
|
+
},
|
|
10396
|
+
"name": "JSDOC"
|
|
10397
|
+
},
|
|
10398
|
+
{
|
|
10399
|
+
"docs": {
|
|
10400
|
+
"stability": "stable",
|
|
10401
|
+
"summary": "Parse block comments."
|
|
10402
|
+
},
|
|
10403
|
+
"name": "BLOCK"
|
|
10404
|
+
},
|
|
10405
|
+
{
|
|
10406
|
+
"docs": {
|
|
10407
|
+
"stability": "stable",
|
|
10408
|
+
"summary": "Parse line comments (//)."
|
|
10409
|
+
},
|
|
10410
|
+
"name": "LINE"
|
|
10411
|
+
},
|
|
10412
|
+
{
|
|
10413
|
+
"docs": {
|
|
10414
|
+
"stability": "stable",
|
|
10415
|
+
"summary": "Parse all comment styles."
|
|
10416
|
+
},
|
|
10417
|
+
"name": "ALL"
|
|
10418
|
+
}
|
|
10419
|
+
],
|
|
10420
|
+
"name": "CommentStyle",
|
|
10421
|
+
"symbolId": "src/components/typedoc-config:CommentStyle"
|
|
10422
|
+
},
|
|
10376
10423
|
"@nikovirtala/projen-constructs.Component": {
|
|
10377
10424
|
"assembly": "@nikovirtala/projen-constructs",
|
|
10378
10425
|
"datatype": true,
|
|
@@ -10590,6 +10637,52 @@
|
|
|
10590
10637
|
"name": "CoverageReporter",
|
|
10591
10638
|
"symbolId": "src/components/vitest:CoverageReporter"
|
|
10592
10639
|
},
|
|
10640
|
+
"@nikovirtala/projen-constructs.EntryPointStrategy": {
|
|
10641
|
+
"assembly": "@nikovirtala/projen-constructs",
|
|
10642
|
+
"docs": {
|
|
10643
|
+
"see": "https://typedoc.org/documents/Options.Input.html#entrypointstrategy",
|
|
10644
|
+
"stability": "stable",
|
|
10645
|
+
"summary": "Specifies the strategy to be used to convert entry points into documentation."
|
|
10646
|
+
},
|
|
10647
|
+
"fqn": "@nikovirtala/projen-constructs.EntryPointStrategy",
|
|
10648
|
+
"kind": "enum",
|
|
10649
|
+
"locationInModule": {
|
|
10650
|
+
"filename": "src/components/typedoc-config.ts",
|
|
10651
|
+
"line": 402
|
|
10652
|
+
},
|
|
10653
|
+
"members": [
|
|
10654
|
+
{
|
|
10655
|
+
"docs": {
|
|
10656
|
+
"stability": "stable",
|
|
10657
|
+
"summary": "Expects all entry points to be contained within a single package."
|
|
10658
|
+
},
|
|
10659
|
+
"name": "RESOLVE"
|
|
10660
|
+
},
|
|
10661
|
+
{
|
|
10662
|
+
"docs": {
|
|
10663
|
+
"stability": "stable",
|
|
10664
|
+
"summary": "Expects all entry points to be top-level directories."
|
|
10665
|
+
},
|
|
10666
|
+
"name": "EXPAND"
|
|
10667
|
+
},
|
|
10668
|
+
{
|
|
10669
|
+
"docs": {
|
|
10670
|
+
"stability": "stable",
|
|
10671
|
+
"summary": "Expects all entry points to be individual files."
|
|
10672
|
+
},
|
|
10673
|
+
"name": "PACKAGES"
|
|
10674
|
+
},
|
|
10675
|
+
{
|
|
10676
|
+
"docs": {
|
|
10677
|
+
"stability": "stable",
|
|
10678
|
+
"summary": "Merges multiple projects into a single documentation site."
|
|
10679
|
+
},
|
|
10680
|
+
"name": "MERGE"
|
|
10681
|
+
}
|
|
10682
|
+
],
|
|
10683
|
+
"name": "EntryPointStrategy",
|
|
10684
|
+
"symbolId": "src/components/typedoc-config:EntryPointStrategy"
|
|
10685
|
+
},
|
|
10593
10686
|
"@nikovirtala/projen-constructs.Environment": {
|
|
10594
10687
|
"assembly": "@nikovirtala/projen-constructs",
|
|
10595
10688
|
"docs": {
|
|
@@ -10652,7 +10745,7 @@
|
|
|
10652
10745
|
},
|
|
10653
10746
|
"locationInModule": {
|
|
10654
10747
|
"filename": "src/projects/jsii.generated.ts",
|
|
10655
|
-
"line":
|
|
10748
|
+
"line": 21
|
|
10656
10749
|
},
|
|
10657
10750
|
"parameters": [
|
|
10658
10751
|
{
|
|
@@ -10669,7 +10762,7 @@
|
|
|
10669
10762
|
"kind": "class",
|
|
10670
10763
|
"locationInModule": {
|
|
10671
10764
|
"filename": "src/projects/jsii.generated.ts",
|
|
10672
|
-
"line":
|
|
10765
|
+
"line": 17
|
|
10673
10766
|
},
|
|
10674
10767
|
"name": "JsiiProject",
|
|
10675
10768
|
"symbolId": "src/projects/jsii.generated:JsiiProject"
|
|
@@ -13291,6 +13384,42 @@
|
|
|
13291
13384
|
"primitive": "string"
|
|
13292
13385
|
}
|
|
13293
13386
|
},
|
|
13387
|
+
{
|
|
13388
|
+
"abstract": true,
|
|
13389
|
+
"docs": {
|
|
13390
|
+
"default": "true",
|
|
13391
|
+
"stability": "stable",
|
|
13392
|
+
"summary": "Enable TypeDoc component."
|
|
13393
|
+
},
|
|
13394
|
+
"immutable": true,
|
|
13395
|
+
"locationInModule": {
|
|
13396
|
+
"filename": "src/projects/jsii-options.generated.ts",
|
|
13397
|
+
"line": 1067
|
|
13398
|
+
},
|
|
13399
|
+
"name": "typeDoc",
|
|
13400
|
+
"optional": true,
|
|
13401
|
+
"type": {
|
|
13402
|
+
"primitive": "boolean"
|
|
13403
|
+
}
|
|
13404
|
+
},
|
|
13405
|
+
{
|
|
13406
|
+
"abstract": true,
|
|
13407
|
+
"docs": {
|
|
13408
|
+
"default": "- default TypeDoc configuration",
|
|
13409
|
+
"stability": "stable",
|
|
13410
|
+
"summary": "TypeDoc configuration."
|
|
13411
|
+
},
|
|
13412
|
+
"immutable": true,
|
|
13413
|
+
"locationInModule": {
|
|
13414
|
+
"filename": "src/projects/jsii-options.generated.ts",
|
|
13415
|
+
"line": 1072
|
|
13416
|
+
},
|
|
13417
|
+
"name": "typeDocOptions",
|
|
13418
|
+
"optional": true,
|
|
13419
|
+
"type": {
|
|
13420
|
+
"fqn": "@nikovirtala/projen-constructs.TypeDocOptions"
|
|
13421
|
+
}
|
|
13422
|
+
},
|
|
13294
13423
|
{
|
|
13295
13424
|
"abstract": true,
|
|
13296
13425
|
"docs": {
|
|
@@ -13554,6 +13683,59 @@
|
|
|
13554
13683
|
],
|
|
13555
13684
|
"symbolId": "src/projects/jsii-options.generated:JsiiProjectOptions"
|
|
13556
13685
|
},
|
|
13686
|
+
"@nikovirtala/projen-constructs.LogLevel": {
|
|
13687
|
+
"assembly": "@nikovirtala/projen-constructs",
|
|
13688
|
+
"docs": {
|
|
13689
|
+
"see": "https://typedoc.org/documents/Options.Other.html#loglevel",
|
|
13690
|
+
"stability": "stable",
|
|
13691
|
+
"summary": "Specifies the logger that should be used."
|
|
13692
|
+
},
|
|
13693
|
+
"fqn": "@nikovirtala/projen-constructs.LogLevel",
|
|
13694
|
+
"kind": "enum",
|
|
13695
|
+
"locationInModule": {
|
|
13696
|
+
"filename": "src/components/typedoc-config.ts",
|
|
13697
|
+
"line": 426
|
|
13698
|
+
},
|
|
13699
|
+
"members": [
|
|
13700
|
+
{
|
|
13701
|
+
"docs": {
|
|
13702
|
+
"stability": "stable",
|
|
13703
|
+
"summary": "Log all messages including verbose debug information."
|
|
13704
|
+
},
|
|
13705
|
+
"name": "VERBOSE"
|
|
13706
|
+
},
|
|
13707
|
+
{
|
|
13708
|
+
"docs": {
|
|
13709
|
+
"stability": "stable",
|
|
13710
|
+
"summary": "Log informational messages and above."
|
|
13711
|
+
},
|
|
13712
|
+
"name": "INFO"
|
|
13713
|
+
},
|
|
13714
|
+
{
|
|
13715
|
+
"docs": {
|
|
13716
|
+
"stability": "stable",
|
|
13717
|
+
"summary": "Log warnings and errors only."
|
|
13718
|
+
},
|
|
13719
|
+
"name": "WARN"
|
|
13720
|
+
},
|
|
13721
|
+
{
|
|
13722
|
+
"docs": {
|
|
13723
|
+
"stability": "stable",
|
|
13724
|
+
"summary": "Log errors only."
|
|
13725
|
+
},
|
|
13726
|
+
"name": "ERROR"
|
|
13727
|
+
},
|
|
13728
|
+
{
|
|
13729
|
+
"docs": {
|
|
13730
|
+
"stability": "stable",
|
|
13731
|
+
"summary": "Disable all logging."
|
|
13732
|
+
},
|
|
13733
|
+
"name": "NONE"
|
|
13734
|
+
}
|
|
13735
|
+
],
|
|
13736
|
+
"name": "LogLevel",
|
|
13737
|
+
"symbolId": "src/components/typedoc-config:LogLevel"
|
|
13738
|
+
},
|
|
13557
13739
|
"@nikovirtala/projen-constructs.Pool": {
|
|
13558
13740
|
"assembly": "@nikovirtala/projen-constructs",
|
|
13559
13741
|
"docs": {
|
|
@@ -13955,71 +14137,135 @@
|
|
|
13955
14137
|
"name": "ProjectType",
|
|
13956
14138
|
"symbolId": "src/project-type:ProjectType"
|
|
13957
14139
|
},
|
|
13958
|
-
"@nikovirtala/projen-constructs.
|
|
14140
|
+
"@nikovirtala/projen-constructs.TypeDoc": {
|
|
13959
14141
|
"assembly": "@nikovirtala/projen-constructs",
|
|
13960
|
-
"base": "projen.
|
|
14142
|
+
"base": "projen.Component",
|
|
13961
14143
|
"docs": {
|
|
13962
|
-
"remarks": "Extends Projen's base class with opinionated defaults and automatic component setup.",
|
|
13963
14144
|
"stability": "stable",
|
|
13964
|
-
"summary": "
|
|
14145
|
+
"summary": "TypeDoc component for projen projects."
|
|
13965
14146
|
},
|
|
13966
|
-
"fqn": "@nikovirtala/projen-constructs.
|
|
14147
|
+
"fqn": "@nikovirtala/projen-constructs.TypeDoc",
|
|
13967
14148
|
"initializer": {
|
|
13968
14149
|
"docs": {
|
|
13969
14150
|
"stability": "stable"
|
|
13970
14151
|
},
|
|
13971
14152
|
"locationInModule": {
|
|
13972
|
-
"filename": "src/
|
|
13973
|
-
"line":
|
|
14153
|
+
"filename": "src/components/typedoc.ts",
|
|
14154
|
+
"line": 57
|
|
13974
14155
|
},
|
|
13975
14156
|
"parameters": [
|
|
13976
14157
|
{
|
|
13977
|
-
"
|
|
13978
|
-
|
|
13979
|
-
|
|
14158
|
+
"name": "project",
|
|
14159
|
+
"type": {
|
|
14160
|
+
"fqn": "projen.javascript.NodeProject"
|
|
14161
|
+
}
|
|
14162
|
+
},
|
|
14163
|
+
{
|
|
13980
14164
|
"name": "options",
|
|
14165
|
+
"optional": true,
|
|
13981
14166
|
"type": {
|
|
13982
|
-
"fqn": "@nikovirtala/projen-constructs.
|
|
14167
|
+
"fqn": "@nikovirtala/projen-constructs.TypeDocOptions"
|
|
13983
14168
|
}
|
|
13984
14169
|
}
|
|
13985
14170
|
]
|
|
13986
14171
|
},
|
|
13987
14172
|
"kind": "class",
|
|
13988
14173
|
"locationInModule": {
|
|
13989
|
-
"filename": "src/
|
|
13990
|
-
"line":
|
|
14174
|
+
"filename": "src/components/typedoc.ts",
|
|
14175
|
+
"line": 39
|
|
13991
14176
|
},
|
|
13992
|
-
"
|
|
13993
|
-
|
|
14177
|
+
"methods": [
|
|
14178
|
+
{
|
|
14179
|
+
"docs": {
|
|
14180
|
+
"stability": "stable"
|
|
14181
|
+
},
|
|
14182
|
+
"locationInModule": {
|
|
14183
|
+
"filename": "src/components/typedoc.ts",
|
|
14184
|
+
"line": 40
|
|
14185
|
+
},
|
|
14186
|
+
"name": "of",
|
|
14187
|
+
"parameters": [
|
|
14188
|
+
{
|
|
14189
|
+
"name": "project",
|
|
14190
|
+
"type": {
|
|
14191
|
+
"fqn": "projen.Project"
|
|
14192
|
+
}
|
|
14193
|
+
}
|
|
14194
|
+
],
|
|
14195
|
+
"returns": {
|
|
14196
|
+
"optional": true,
|
|
14197
|
+
"type": {
|
|
14198
|
+
"fqn": "@nikovirtala/projen-constructs.TypeDoc"
|
|
14199
|
+
}
|
|
14200
|
+
},
|
|
14201
|
+
"static": true
|
|
14202
|
+
}
|
|
14203
|
+
],
|
|
14204
|
+
"name": "TypeDoc",
|
|
14205
|
+
"properties": [
|
|
14206
|
+
{
|
|
14207
|
+
"docs": {
|
|
14208
|
+
"stability": "stable",
|
|
14209
|
+
"summary": "TypeDoc configuration file."
|
|
14210
|
+
},
|
|
14211
|
+
"immutable": true,
|
|
14212
|
+
"locationInModule": {
|
|
14213
|
+
"filename": "src/components/typedoc.ts",
|
|
14214
|
+
"line": 55
|
|
14215
|
+
},
|
|
14216
|
+
"name": "file",
|
|
14217
|
+
"type": {
|
|
14218
|
+
"fqn": "projen.JsonFile"
|
|
14219
|
+
}
|
|
14220
|
+
},
|
|
14221
|
+
{
|
|
14222
|
+
"docs": {
|
|
14223
|
+
"stability": "stable",
|
|
14224
|
+
"summary": "TypeDoc task."
|
|
14225
|
+
},
|
|
14226
|
+
"immutable": true,
|
|
14227
|
+
"locationInModule": {
|
|
14228
|
+
"filename": "src/components/typedoc.ts",
|
|
14229
|
+
"line": 50
|
|
14230
|
+
},
|
|
14231
|
+
"name": "task",
|
|
14232
|
+
"type": {
|
|
14233
|
+
"fqn": "projen.Task"
|
|
14234
|
+
}
|
|
14235
|
+
}
|
|
14236
|
+
],
|
|
14237
|
+
"symbolId": "src/components/typedoc:TypeDoc"
|
|
13994
14238
|
},
|
|
13995
|
-
"@nikovirtala/projen-constructs.
|
|
14239
|
+
"@nikovirtala/projen-constructs.TypeDocConfiguration": {
|
|
13996
14240
|
"assembly": "@nikovirtala/projen-constructs",
|
|
13997
14241
|
"datatype": true,
|
|
13998
14242
|
"docs": {
|
|
14243
|
+
"see": "https://typedoc.org/options/",
|
|
13999
14244
|
"stability": "stable",
|
|
14000
|
-
"summary": "
|
|
14245
|
+
"summary": "TypeDoc configuration."
|
|
14001
14246
|
},
|
|
14002
|
-
"fqn": "@nikovirtala/projen-constructs.
|
|
14247
|
+
"fqn": "@nikovirtala/projen-constructs.TypeDocConfiguration",
|
|
14003
14248
|
"kind": "interface",
|
|
14004
14249
|
"locationInModule": {
|
|
14005
|
-
"filename": "src/
|
|
14006
|
-
"line":
|
|
14250
|
+
"filename": "src/components/typedoc-config.ts",
|
|
14251
|
+
"line": 6
|
|
14007
14252
|
},
|
|
14008
|
-
"name": "
|
|
14253
|
+
"name": "TypeDocConfiguration",
|
|
14009
14254
|
"properties": [
|
|
14010
14255
|
{
|
|
14011
14256
|
"abstract": true,
|
|
14012
14257
|
"docs": {
|
|
14013
|
-
"
|
|
14014
|
-
"stability": "
|
|
14015
|
-
"summary": "
|
|
14258
|
+
"see": "https://typedoc.org/documents/Options.Output.html#basepath",
|
|
14259
|
+
"stability": "stable",
|
|
14260
|
+
"summary": "Specify the base path for all urls."
|
|
14016
14261
|
},
|
|
14017
14262
|
"immutable": true,
|
|
14018
14263
|
"locationInModule": {
|
|
14019
|
-
"filename": "src/
|
|
14020
|
-
"line":
|
|
14264
|
+
"filename": "src/components/typedoc-config.ts",
|
|
14265
|
+
"line": 82
|
|
14021
14266
|
},
|
|
14022
|
-
"name": "
|
|
14267
|
+
"name": "basePath",
|
|
14268
|
+
"optional": true,
|
|
14023
14269
|
"type": {
|
|
14024
14270
|
"primitive": "string"
|
|
14025
14271
|
}
|
|
@@ -14027,37 +14273,34 @@
|
|
|
14027
14273
|
{
|
|
14028
14274
|
"abstract": true,
|
|
14029
14275
|
"docs": {
|
|
14030
|
-
"
|
|
14031
|
-
|
|
14032
|
-
|
|
14033
|
-
"default": "$BASEDIR",
|
|
14034
|
-
"stability": "experimental",
|
|
14035
|
-
"summary": "This is the name of your project."
|
|
14276
|
+
"see": "https://typedoc.org/documents/Options.Output.html#cachebust",
|
|
14277
|
+
"stability": "stable",
|
|
14278
|
+
"summary": "Include the generation time in links to prevent browsers from using a cached version."
|
|
14036
14279
|
},
|
|
14037
14280
|
"immutable": true,
|
|
14038
14281
|
"locationInModule": {
|
|
14039
|
-
"filename": "src/
|
|
14040
|
-
"line":
|
|
14282
|
+
"filename": "src/components/typedoc-config.ts",
|
|
14283
|
+
"line": 264
|
|
14041
14284
|
},
|
|
14042
|
-
"name": "
|
|
14285
|
+
"name": "cacheBust",
|
|
14286
|
+
"optional": true,
|
|
14043
14287
|
"type": {
|
|
14044
|
-
"primitive": "
|
|
14288
|
+
"primitive": "boolean"
|
|
14045
14289
|
}
|
|
14046
14290
|
},
|
|
14047
14291
|
{
|
|
14048
14292
|
"abstract": true,
|
|
14049
14293
|
"docs": {
|
|
14050
|
-
"
|
|
14051
|
-
"
|
|
14052
|
-
"
|
|
14053
|
-
"summary": "Allow the project to include `peerDependencies` and `bundledDependencies`."
|
|
14294
|
+
"see": "https://typedoc.org/documents/Options.Organization.html#categorizebygroup",
|
|
14295
|
+
"stability": "stable",
|
|
14296
|
+
"summary": "Specify the categories that will be used to group reflections."
|
|
14054
14297
|
},
|
|
14055
14298
|
"immutable": true,
|
|
14056
14299
|
"locationInModule": {
|
|
14057
|
-
"filename": "src/
|
|
14058
|
-
"line":
|
|
14300
|
+
"filename": "src/components/typedoc-config.ts",
|
|
14301
|
+
"line": 180
|
|
14059
14302
|
},
|
|
14060
|
-
"name": "
|
|
14303
|
+
"name": "categorizeByGroup",
|
|
14061
14304
|
"optional": true,
|
|
14062
14305
|
"type": {
|
|
14063
14306
|
"primitive": "boolean"
|
|
@@ -14066,46 +14309,1034 @@
|
|
|
14066
14309
|
{
|
|
14067
14310
|
"abstract": true,
|
|
14068
14311
|
"docs": {
|
|
14069
|
-
"
|
|
14070
|
-
"stability": "
|
|
14071
|
-
"summary": "
|
|
14312
|
+
"see": "https://typedoc.org/documents/Options.Output.html#cleanoutputdir",
|
|
14313
|
+
"stability": "stable",
|
|
14314
|
+
"summary": "Prevent TypeDoc from cleaning the output directory specified with --out."
|
|
14072
14315
|
},
|
|
14073
14316
|
"immutable": true,
|
|
14074
14317
|
"locationInModule": {
|
|
14075
|
-
"filename": "src/
|
|
14076
|
-
"line":
|
|
14318
|
+
"filename": "src/components/typedoc-config.ts",
|
|
14319
|
+
"line": 96
|
|
14077
14320
|
},
|
|
14078
|
-
"name": "
|
|
14321
|
+
"name": "cleanOutputDir",
|
|
14079
14322
|
"optional": true,
|
|
14080
14323
|
"type": {
|
|
14081
|
-
"primitive": "
|
|
14324
|
+
"primitive": "boolean"
|
|
14082
14325
|
}
|
|
14083
14326
|
},
|
|
14084
14327
|
{
|
|
14085
14328
|
"abstract": true,
|
|
14086
14329
|
"docs": {
|
|
14087
|
-
"
|
|
14088
|
-
"
|
|
14089
|
-
"
|
|
14090
|
-
"summary": "Run security audit on dependencies."
|
|
14330
|
+
"see": "https://typedoc.org/documents/Options.Comments.html#commentstyle",
|
|
14331
|
+
"stability": "stable",
|
|
14332
|
+
"summary": "Specify the documentation mode TypeDoc should use."
|
|
14091
14333
|
},
|
|
14092
14334
|
"immutable": true,
|
|
14093
14335
|
"locationInModule": {
|
|
14094
|
-
"filename": "src/
|
|
14095
|
-
"line":
|
|
14336
|
+
"filename": "src/components/typedoc-config.ts",
|
|
14337
|
+
"line": 152
|
|
14096
14338
|
},
|
|
14097
|
-
"name": "
|
|
14339
|
+
"name": "commentStyle",
|
|
14098
14340
|
"optional": true,
|
|
14099
14341
|
"type": {
|
|
14100
|
-
"
|
|
14342
|
+
"fqn": "@nikovirtala/projen-constructs.CommentStyle"
|
|
14101
14343
|
}
|
|
14102
14344
|
},
|
|
14103
14345
|
{
|
|
14104
14346
|
"abstract": true,
|
|
14105
14347
|
"docs": {
|
|
14106
|
-
"
|
|
14107
|
-
"stability": "
|
|
14108
|
-
"summary": "
|
|
14348
|
+
"see": "https://typedoc.org/documents/Options.Organization.html#defaultcategory",
|
|
14349
|
+
"stability": "stable",
|
|
14350
|
+
"summary": "Specify the default category for reflections without a category."
|
|
14351
|
+
},
|
|
14352
|
+
"immutable": true,
|
|
14353
|
+
"locationInModule": {
|
|
14354
|
+
"filename": "src/components/typedoc-config.ts",
|
|
14355
|
+
"line": 166
|
|
14356
|
+
},
|
|
14357
|
+
"name": "defaultCategory",
|
|
14358
|
+
"optional": true,
|
|
14359
|
+
"type": {
|
|
14360
|
+
"primitive": "string"
|
|
14361
|
+
}
|
|
14362
|
+
},
|
|
14363
|
+
{
|
|
14364
|
+
"abstract": true,
|
|
14365
|
+
"docs": {
|
|
14366
|
+
"see": "https://typedoc.org/documents/Options.Organization.html#defaultgroup",
|
|
14367
|
+
"stability": "stable",
|
|
14368
|
+
"summary": "Specify the default group for reflections without a group."
|
|
14369
|
+
},
|
|
14370
|
+
"immutable": true,
|
|
14371
|
+
"locationInModule": {
|
|
14372
|
+
"filename": "src/components/typedoc-config.ts",
|
|
14373
|
+
"line": 173
|
|
14374
|
+
},
|
|
14375
|
+
"name": "defaultGroup",
|
|
14376
|
+
"optional": true,
|
|
14377
|
+
"type": {
|
|
14378
|
+
"primitive": "string"
|
|
14379
|
+
}
|
|
14380
|
+
},
|
|
14381
|
+
{
|
|
14382
|
+
"abstract": true,
|
|
14383
|
+
"docs": {
|
|
14384
|
+
"see": "https://typedoc.org/documents/Options.Comments.html#defaultvisibility",
|
|
14385
|
+
"stability": "stable",
|
|
14386
|
+
"summary": "Specify the default visibility for members without a visibility tag."
|
|
14387
|
+
},
|
|
14388
|
+
"immutable": true,
|
|
14389
|
+
"locationInModule": {
|
|
14390
|
+
"filename": "src/components/typedoc-config.ts",
|
|
14391
|
+
"line": 159
|
|
14392
|
+
},
|
|
14393
|
+
"name": "defaultVisibility",
|
|
14394
|
+
"optional": true,
|
|
14395
|
+
"type": {
|
|
14396
|
+
"fqn": "@nikovirtala/projen-constructs.Visibility"
|
|
14397
|
+
}
|
|
14398
|
+
},
|
|
14399
|
+
{
|
|
14400
|
+
"abstract": true,
|
|
14401
|
+
"docs": {
|
|
14402
|
+
"see": "https://typedoc.org/documents/Options.Comments.html#disablegit",
|
|
14403
|
+
"stability": "stable",
|
|
14404
|
+
"summary": "Disables setting the source of reflections when documenting projects within a Git repository."
|
|
14405
|
+
},
|
|
14406
|
+
"immutable": true,
|
|
14407
|
+
"locationInModule": {
|
|
14408
|
+
"filename": "src/components/typedoc-config.ts",
|
|
14409
|
+
"line": 243
|
|
14410
|
+
},
|
|
14411
|
+
"name": "disableGit",
|
|
14412
|
+
"optional": true,
|
|
14413
|
+
"type": {
|
|
14414
|
+
"primitive": "boolean"
|
|
14415
|
+
}
|
|
14416
|
+
},
|
|
14417
|
+
{
|
|
14418
|
+
"abstract": true,
|
|
14419
|
+
"docs": {
|
|
14420
|
+
"see": "https://typedoc.org/documents/Options.Comments.html#disablesources",
|
|
14421
|
+
"stability": "stable",
|
|
14422
|
+
"summary": "Disables automatically linking to source code."
|
|
14423
|
+
},
|
|
14424
|
+
"immutable": true,
|
|
14425
|
+
"locationInModule": {
|
|
14426
|
+
"filename": "src/components/typedoc-config.ts",
|
|
14427
|
+
"line": 236
|
|
14428
|
+
},
|
|
14429
|
+
"name": "disableSources",
|
|
14430
|
+
"optional": true,
|
|
14431
|
+
"type": {
|
|
14432
|
+
"primitive": "boolean"
|
|
14433
|
+
}
|
|
14434
|
+
},
|
|
14435
|
+
{
|
|
14436
|
+
"abstract": true,
|
|
14437
|
+
"docs": {
|
|
14438
|
+
"see": "https://typedoc.org/documents/Options.Input.html#entrypoints",
|
|
14439
|
+
"stability": "stable",
|
|
14440
|
+
"summary": "Specifies the entry points to be documented by TypeDoc."
|
|
14441
|
+
},
|
|
14442
|
+
"immutable": true,
|
|
14443
|
+
"locationInModule": {
|
|
14444
|
+
"filename": "src/components/typedoc-config.ts",
|
|
14445
|
+
"line": 12
|
|
14446
|
+
},
|
|
14447
|
+
"name": "entryPoints",
|
|
14448
|
+
"optional": true,
|
|
14449
|
+
"type": {
|
|
14450
|
+
"collection": {
|
|
14451
|
+
"elementtype": {
|
|
14452
|
+
"primitive": "string"
|
|
14453
|
+
},
|
|
14454
|
+
"kind": "array"
|
|
14455
|
+
}
|
|
14456
|
+
}
|
|
14457
|
+
},
|
|
14458
|
+
{
|
|
14459
|
+
"abstract": true,
|
|
14460
|
+
"docs": {
|
|
14461
|
+
"see": "https://typedoc.org/documents/Options.Input.html#entrypointstrategy",
|
|
14462
|
+
"stability": "stable",
|
|
14463
|
+
"summary": "Specifies the strategy to be used to convert entry points into documentation."
|
|
14464
|
+
},
|
|
14465
|
+
"immutable": true,
|
|
14466
|
+
"locationInModule": {
|
|
14467
|
+
"filename": "src/components/typedoc-config.ts",
|
|
14468
|
+
"line": 19
|
|
14469
|
+
},
|
|
14470
|
+
"name": "entryPointStrategy",
|
|
14471
|
+
"optional": true,
|
|
14472
|
+
"type": {
|
|
14473
|
+
"fqn": "@nikovirtala/projen-constructs.EntryPointStrategy"
|
|
14474
|
+
}
|
|
14475
|
+
},
|
|
14476
|
+
{
|
|
14477
|
+
"abstract": true,
|
|
14478
|
+
"docs": {
|
|
14479
|
+
"see": "https://typedoc.org/documents/Options.Input.html#exclude",
|
|
14480
|
+
"stability": "stable",
|
|
14481
|
+
"summary": "Define patterns to be excluded when expanding directories."
|
|
14482
|
+
},
|
|
14483
|
+
"immutable": true,
|
|
14484
|
+
"locationInModule": {
|
|
14485
|
+
"filename": "src/components/typedoc-config.ts",
|
|
14486
|
+
"line": 26
|
|
14487
|
+
},
|
|
14488
|
+
"name": "exclude",
|
|
14489
|
+
"optional": true,
|
|
14490
|
+
"type": {
|
|
14491
|
+
"collection": {
|
|
14492
|
+
"elementtype": {
|
|
14493
|
+
"primitive": "string"
|
|
14494
|
+
},
|
|
14495
|
+
"kind": "array"
|
|
14496
|
+
}
|
|
14497
|
+
}
|
|
14498
|
+
},
|
|
14499
|
+
{
|
|
14500
|
+
"abstract": true,
|
|
14501
|
+
"docs": {
|
|
14502
|
+
"see": "https://typedoc.org/documents/Options.Input.html#excludeexternals",
|
|
14503
|
+
"stability": "stable",
|
|
14504
|
+
"summary": "Prevent externally resolved symbols from being documented."
|
|
14505
|
+
},
|
|
14506
|
+
"immutable": true,
|
|
14507
|
+
"locationInModule": {
|
|
14508
|
+
"filename": "src/components/typedoc-config.ts",
|
|
14509
|
+
"line": 33
|
|
14510
|
+
},
|
|
14511
|
+
"name": "excludeExternals",
|
|
14512
|
+
"optional": true,
|
|
14513
|
+
"type": {
|
|
14514
|
+
"primitive": "boolean"
|
|
14515
|
+
}
|
|
14516
|
+
},
|
|
14517
|
+
{
|
|
14518
|
+
"abstract": true,
|
|
14519
|
+
"docs": {
|
|
14520
|
+
"see": "https://typedoc.org/documents/Options.Input.html#excludeinternal",
|
|
14521
|
+
"stability": "stable",
|
|
14522
|
+
"summary": "Prevent symbols that are not exported from being documented."
|
|
14523
|
+
},
|
|
14524
|
+
"immutable": true,
|
|
14525
|
+
"locationInModule": {
|
|
14526
|
+
"filename": "src/components/typedoc-config.ts",
|
|
14527
|
+
"line": 54
|
|
14528
|
+
},
|
|
14529
|
+
"name": "excludeInternal",
|
|
14530
|
+
"optional": true,
|
|
14531
|
+
"type": {
|
|
14532
|
+
"primitive": "boolean"
|
|
14533
|
+
}
|
|
14534
|
+
},
|
|
14535
|
+
{
|
|
14536
|
+
"abstract": true,
|
|
14537
|
+
"docs": {
|
|
14538
|
+
"see": "https://typedoc.org/documents/Options.Input.html#excludeprivate",
|
|
14539
|
+
"stability": "stable",
|
|
14540
|
+
"summary": "Prevent private members from being included in the generated documentation."
|
|
14541
|
+
},
|
|
14542
|
+
"immutable": true,
|
|
14543
|
+
"locationInModule": {
|
|
14544
|
+
"filename": "src/components/typedoc-config.ts",
|
|
14545
|
+
"line": 40
|
|
14546
|
+
},
|
|
14547
|
+
"name": "excludePrivate",
|
|
14548
|
+
"optional": true,
|
|
14549
|
+
"type": {
|
|
14550
|
+
"primitive": "boolean"
|
|
14551
|
+
}
|
|
14552
|
+
},
|
|
14553
|
+
{
|
|
14554
|
+
"abstract": true,
|
|
14555
|
+
"docs": {
|
|
14556
|
+
"see": "https://typedoc.org/documents/Options.Input.html#excludeprotected",
|
|
14557
|
+
"stability": "stable",
|
|
14558
|
+
"summary": "Prevent protected members from being included in the generated documentation."
|
|
14559
|
+
},
|
|
14560
|
+
"immutable": true,
|
|
14561
|
+
"locationInModule": {
|
|
14562
|
+
"filename": "src/components/typedoc-config.ts",
|
|
14563
|
+
"line": 47
|
|
14564
|
+
},
|
|
14565
|
+
"name": "excludeProtected",
|
|
14566
|
+
"optional": true,
|
|
14567
|
+
"type": {
|
|
14568
|
+
"primitive": "boolean"
|
|
14569
|
+
}
|
|
14570
|
+
},
|
|
14571
|
+
{
|
|
14572
|
+
"abstract": true,
|
|
14573
|
+
"docs": {
|
|
14574
|
+
"see": "https://typedoc.org/documents/Options.Input.html#externalpattern",
|
|
14575
|
+
"stability": "stable",
|
|
14576
|
+
"summary": "Define patterns for files that should be considered external."
|
|
14577
|
+
},
|
|
14578
|
+
"immutable": true,
|
|
14579
|
+
"locationInModule": {
|
|
14580
|
+
"filename": "src/components/typedoc-config.ts",
|
|
14581
|
+
"line": 320
|
|
14582
|
+
},
|
|
14583
|
+
"name": "externalPattern",
|
|
14584
|
+
"optional": true,
|
|
14585
|
+
"type": {
|
|
14586
|
+
"collection": {
|
|
14587
|
+
"elementtype": {
|
|
14588
|
+
"primitive": "string"
|
|
14589
|
+
},
|
|
14590
|
+
"kind": "array"
|
|
14591
|
+
}
|
|
14592
|
+
}
|
|
14593
|
+
},
|
|
14594
|
+
{
|
|
14595
|
+
"abstract": true,
|
|
14596
|
+
"docs": {
|
|
14597
|
+
"see": "https://typedoc.org/documents/Options.Comments.html#externalsymbollinkmappings",
|
|
14598
|
+
"stability": "stable",
|
|
14599
|
+
"summary": "Define custom mappings for symbols in external packages."
|
|
14600
|
+
},
|
|
14601
|
+
"immutable": true,
|
|
14602
|
+
"locationInModule": {
|
|
14603
|
+
"filename": "src/components/typedoc-config.ts",
|
|
14604
|
+
"line": 327
|
|
14605
|
+
},
|
|
14606
|
+
"name": "externalSymbolLinkMappings",
|
|
14607
|
+
"optional": true,
|
|
14608
|
+
"type": {
|
|
14609
|
+
"collection": {
|
|
14610
|
+
"elementtype": {
|
|
14611
|
+
"collection": {
|
|
14612
|
+
"elementtype": {
|
|
14613
|
+
"primitive": "string"
|
|
14614
|
+
},
|
|
14615
|
+
"kind": "map"
|
|
14616
|
+
}
|
|
14617
|
+
},
|
|
14618
|
+
"kind": "map"
|
|
14619
|
+
}
|
|
14620
|
+
}
|
|
14621
|
+
},
|
|
14622
|
+
{
|
|
14623
|
+
"abstract": true,
|
|
14624
|
+
"docs": {
|
|
14625
|
+
"see": "https://typedoc.org/documents/Options.Comments.html#gitremote",
|
|
14626
|
+
"stability": "stable",
|
|
14627
|
+
"summary": "Specify the git remote that should be used to link to source files."
|
|
14628
|
+
},
|
|
14629
|
+
"immutable": true,
|
|
14630
|
+
"locationInModule": {
|
|
14631
|
+
"filename": "src/components/typedoc-config.ts",
|
|
14632
|
+
"line": 222
|
|
14633
|
+
},
|
|
14634
|
+
"name": "gitRemote",
|
|
14635
|
+
"optional": true,
|
|
14636
|
+
"type": {
|
|
14637
|
+
"primitive": "string"
|
|
14638
|
+
}
|
|
14639
|
+
},
|
|
14640
|
+
{
|
|
14641
|
+
"abstract": true,
|
|
14642
|
+
"docs": {
|
|
14643
|
+
"see": "https://typedoc.org/documents/Options.Comments.html#gitrevision",
|
|
14644
|
+
"stability": "stable",
|
|
14645
|
+
"summary": "Specify the git revision that should be used to link to source files."
|
|
14646
|
+
},
|
|
14647
|
+
"immutable": true,
|
|
14648
|
+
"locationInModule": {
|
|
14649
|
+
"filename": "src/components/typedoc-config.ts",
|
|
14650
|
+
"line": 215
|
|
14651
|
+
},
|
|
14652
|
+
"name": "gitRevision",
|
|
14653
|
+
"optional": true,
|
|
14654
|
+
"type": {
|
|
14655
|
+
"primitive": "string"
|
|
14656
|
+
}
|
|
14657
|
+
},
|
|
14658
|
+
{
|
|
14659
|
+
"abstract": true,
|
|
14660
|
+
"docs": {
|
|
14661
|
+
"see": "https://typedoc.org/documents/Options.Output.html#hidegenerator",
|
|
14662
|
+
"stability": "stable",
|
|
14663
|
+
"summary": "Do not print the TypeDoc link at the end of the page."
|
|
14664
|
+
},
|
|
14665
|
+
"immutable": true,
|
|
14666
|
+
"locationInModule": {
|
|
14667
|
+
"filename": "src/components/typedoc-config.ts",
|
|
14668
|
+
"line": 250
|
|
14669
|
+
},
|
|
14670
|
+
"name": "hideGenerator",
|
|
14671
|
+
"optional": true,
|
|
14672
|
+
"type": {
|
|
14673
|
+
"primitive": "boolean"
|
|
14674
|
+
}
|
|
14675
|
+
},
|
|
14676
|
+
{
|
|
14677
|
+
"abstract": true,
|
|
14678
|
+
"docs": {
|
|
14679
|
+
"see": "https://typedoc.org/documents/Options.Output.html#hideparametertypesintitle",
|
|
14680
|
+
"stability": "stable",
|
|
14681
|
+
"summary": "Hide parameter types in the signature."
|
|
14682
|
+
},
|
|
14683
|
+
"immutable": true,
|
|
14684
|
+
"locationInModule": {
|
|
14685
|
+
"filename": "src/components/typedoc-config.ts",
|
|
14686
|
+
"line": 257
|
|
14687
|
+
},
|
|
14688
|
+
"name": "hideParameterTypesInTitle",
|
|
14689
|
+
"optional": true,
|
|
14690
|
+
"type": {
|
|
14691
|
+
"primitive": "boolean"
|
|
14692
|
+
}
|
|
14693
|
+
},
|
|
14694
|
+
{
|
|
14695
|
+
"abstract": true,
|
|
14696
|
+
"docs": {
|
|
14697
|
+
"see": "https://typedoc.org/documents/Options.Output.html#includes",
|
|
14698
|
+
"stability": "stable",
|
|
14699
|
+
"summary": "Specify the location to look for included documents."
|
|
14700
|
+
},
|
|
14701
|
+
"immutable": true,
|
|
14702
|
+
"locationInModule": {
|
|
14703
|
+
"filename": "src/components/typedoc-config.ts",
|
|
14704
|
+
"line": 103
|
|
14705
|
+
},
|
|
14706
|
+
"name": "includes",
|
|
14707
|
+
"optional": true,
|
|
14708
|
+
"type": {
|
|
14709
|
+
"primitive": "string"
|
|
14710
|
+
}
|
|
14711
|
+
},
|
|
14712
|
+
{
|
|
14713
|
+
"abstract": true,
|
|
14714
|
+
"docs": {
|
|
14715
|
+
"see": "https://typedoc.org/documents/Options.Validation.html#intentionallynotexported",
|
|
14716
|
+
"stability": "stable",
|
|
14717
|
+
"summary": "A list of types that should not produce warnings when not being exported."
|
|
14718
|
+
},
|
|
14719
|
+
"immutable": true,
|
|
14720
|
+
"locationInModule": {
|
|
14721
|
+
"filename": "src/components/typedoc-config.ts",
|
|
14722
|
+
"line": 313
|
|
14723
|
+
},
|
|
14724
|
+
"name": "intentionallyNotExported",
|
|
14725
|
+
"optional": true,
|
|
14726
|
+
"type": {
|
|
14727
|
+
"collection": {
|
|
14728
|
+
"elementtype": {
|
|
14729
|
+
"primitive": "string"
|
|
14730
|
+
},
|
|
14731
|
+
"kind": "array"
|
|
14732
|
+
}
|
|
14733
|
+
}
|
|
14734
|
+
},
|
|
14735
|
+
{
|
|
14736
|
+
"abstract": true,
|
|
14737
|
+
"docs": {
|
|
14738
|
+
"see": "https://typedoc.org/documents/Options.Output.html#json",
|
|
14739
|
+
"stability": "stable",
|
|
14740
|
+
"summary": "Specify the location the documentation should be written to."
|
|
14741
|
+
},
|
|
14742
|
+
"immutable": true,
|
|
14743
|
+
"locationInModule": {
|
|
14744
|
+
"filename": "src/components/typedoc-config.ts",
|
|
14745
|
+
"line": 68
|
|
14746
|
+
},
|
|
14747
|
+
"name": "json",
|
|
14748
|
+
"optional": true,
|
|
14749
|
+
"type": {
|
|
14750
|
+
"primitive": "string"
|
|
14751
|
+
}
|
|
14752
|
+
},
|
|
14753
|
+
{
|
|
14754
|
+
"abstract": true,
|
|
14755
|
+
"docs": {
|
|
14756
|
+
"see": "https://typedoc.org/documents/Options.Other.html#loglevel",
|
|
14757
|
+
"stability": "stable",
|
|
14758
|
+
"summary": "Specify the logger that should be used."
|
|
14759
|
+
},
|
|
14760
|
+
"immutable": true,
|
|
14761
|
+
"locationInModule": {
|
|
14762
|
+
"filename": "src/components/typedoc-config.ts",
|
|
14763
|
+
"line": 131
|
|
14764
|
+
},
|
|
14765
|
+
"name": "logLevel",
|
|
14766
|
+
"optional": true,
|
|
14767
|
+
"type": {
|
|
14768
|
+
"fqn": "@nikovirtala/projen-constructs.LogLevel"
|
|
14769
|
+
}
|
|
14770
|
+
},
|
|
14771
|
+
{
|
|
14772
|
+
"abstract": true,
|
|
14773
|
+
"docs": {
|
|
14774
|
+
"see": "https://typedoc.org/documents/Options.Output.html#media",
|
|
14775
|
+
"stability": "stable",
|
|
14776
|
+
"summary": "Specify the location with media files that should be copied to the output directory."
|
|
14777
|
+
},
|
|
14778
|
+
"immutable": true,
|
|
14779
|
+
"locationInModule": {
|
|
14780
|
+
"filename": "src/components/typedoc-config.ts",
|
|
14781
|
+
"line": 110
|
|
14782
|
+
},
|
|
14783
|
+
"name": "media",
|
|
14784
|
+
"optional": true,
|
|
14785
|
+
"type": {
|
|
14786
|
+
"primitive": "string"
|
|
14787
|
+
}
|
|
14788
|
+
},
|
|
14789
|
+
{
|
|
14790
|
+
"abstract": true,
|
|
14791
|
+
"docs": {
|
|
14792
|
+
"see": "https://typedoc.org/documents/Options.Output.html#name",
|
|
14793
|
+
"stability": "stable",
|
|
14794
|
+
"summary": "Set the name of the project that will be used in the header of the template."
|
|
14795
|
+
},
|
|
14796
|
+
"immutable": true,
|
|
14797
|
+
"locationInModule": {
|
|
14798
|
+
"filename": "src/components/typedoc-config.ts",
|
|
14799
|
+
"line": 89
|
|
14800
|
+
},
|
|
14801
|
+
"name": "name",
|
|
14802
|
+
"optional": true,
|
|
14803
|
+
"type": {
|
|
14804
|
+
"primitive": "string"
|
|
14805
|
+
}
|
|
14806
|
+
},
|
|
14807
|
+
{
|
|
14808
|
+
"abstract": true,
|
|
14809
|
+
"docs": {
|
|
14810
|
+
"see": "https://typedoc.org/documents/Options.Output.html#out",
|
|
14811
|
+
"stability": "stable",
|
|
14812
|
+
"summary": "Specifies the output directory the documentation should be written to."
|
|
14813
|
+
},
|
|
14814
|
+
"immutable": true,
|
|
14815
|
+
"locationInModule": {
|
|
14816
|
+
"filename": "src/components/typedoc-config.ts",
|
|
14817
|
+
"line": 61
|
|
14818
|
+
},
|
|
14819
|
+
"name": "out",
|
|
14820
|
+
"optional": true,
|
|
14821
|
+
"type": {
|
|
14822
|
+
"primitive": "string"
|
|
14823
|
+
}
|
|
14824
|
+
},
|
|
14825
|
+
{
|
|
14826
|
+
"abstract": true,
|
|
14827
|
+
"docs": {
|
|
14828
|
+
"see": "https://typedoc.org/documents/Options.Input.html#packagejson",
|
|
14829
|
+
"stability": "stable",
|
|
14830
|
+
"summary": "Specify the package.json file that should be used to determine the package name."
|
|
14831
|
+
},
|
|
14832
|
+
"immutable": true,
|
|
14833
|
+
"locationInModule": {
|
|
14834
|
+
"filename": "src/components/typedoc-config.ts",
|
|
14835
|
+
"line": 208
|
|
14836
|
+
},
|
|
14837
|
+
"name": "packageJson",
|
|
14838
|
+
"optional": true,
|
|
14839
|
+
"type": {
|
|
14840
|
+
"primitive": "string"
|
|
14841
|
+
}
|
|
14842
|
+
},
|
|
14843
|
+
{
|
|
14844
|
+
"abstract": true,
|
|
14845
|
+
"docs": {
|
|
14846
|
+
"see": "https://typedoc.org/documents/Options.Input.html#readme",
|
|
14847
|
+
"stability": "stable",
|
|
14848
|
+
"summary": "Specify the readme file that should be displayed on the index page."
|
|
14849
|
+
},
|
|
14850
|
+
"immutable": true,
|
|
14851
|
+
"locationInModule": {
|
|
14852
|
+
"filename": "src/components/typedoc-config.ts",
|
|
14853
|
+
"line": 201
|
|
14854
|
+
},
|
|
14855
|
+
"name": "readme",
|
|
14856
|
+
"optional": true,
|
|
14857
|
+
"type": {
|
|
14858
|
+
"primitive": "string"
|
|
14859
|
+
}
|
|
14860
|
+
},
|
|
14861
|
+
{
|
|
14862
|
+
"abstract": true,
|
|
14863
|
+
"docs": {
|
|
14864
|
+
"see": "https://typedoc.org/documents/Options.Validation.html#requiredtobedocumented",
|
|
14865
|
+
"stability": "stable",
|
|
14866
|
+
"summary": "Specify the type of reflections that must be documented."
|
|
14867
|
+
},
|
|
14868
|
+
"immutable": true,
|
|
14869
|
+
"locationInModule": {
|
|
14870
|
+
"filename": "src/components/typedoc-config.ts",
|
|
14871
|
+
"line": 292
|
|
14872
|
+
},
|
|
14873
|
+
"name": "requiredToBeDocumented",
|
|
14874
|
+
"optional": true,
|
|
14875
|
+
"type": {
|
|
14876
|
+
"collection": {
|
|
14877
|
+
"elementtype": {
|
|
14878
|
+
"primitive": "string"
|
|
14879
|
+
},
|
|
14880
|
+
"kind": "array"
|
|
14881
|
+
}
|
|
14882
|
+
}
|
|
14883
|
+
},
|
|
14884
|
+
{
|
|
14885
|
+
"abstract": true,
|
|
14886
|
+
"docs": {
|
|
14887
|
+
"see": "https://typedoc.org/documents/Options.Organization.html#searchcategoryboosts",
|
|
14888
|
+
"stability": "stable",
|
|
14889
|
+
"summary": "Specify the search category boosts."
|
|
14890
|
+
},
|
|
14891
|
+
"immutable": true,
|
|
14892
|
+
"locationInModule": {
|
|
14893
|
+
"filename": "src/components/typedoc-config.ts",
|
|
14894
|
+
"line": 194
|
|
14895
|
+
},
|
|
14896
|
+
"name": "searchCategoryBoosts",
|
|
14897
|
+
"optional": true,
|
|
14898
|
+
"type": {
|
|
14899
|
+
"collection": {
|
|
14900
|
+
"elementtype": {
|
|
14901
|
+
"primitive": "number"
|
|
14902
|
+
},
|
|
14903
|
+
"kind": "map"
|
|
14904
|
+
}
|
|
14905
|
+
}
|
|
14906
|
+
},
|
|
14907
|
+
{
|
|
14908
|
+
"abstract": true,
|
|
14909
|
+
"docs": {
|
|
14910
|
+
"see": "https://typedoc.org/documents/Options.Organization.html#searchgroupboosts",
|
|
14911
|
+
"stability": "stable",
|
|
14912
|
+
"summary": "Specify the search group boosts."
|
|
14913
|
+
},
|
|
14914
|
+
"immutable": true,
|
|
14915
|
+
"locationInModule": {
|
|
14916
|
+
"filename": "src/components/typedoc-config.ts",
|
|
14917
|
+
"line": 187
|
|
14918
|
+
},
|
|
14919
|
+
"name": "searchGroupBoosts",
|
|
14920
|
+
"optional": true,
|
|
14921
|
+
"type": {
|
|
14922
|
+
"collection": {
|
|
14923
|
+
"elementtype": {
|
|
14924
|
+
"primitive": "number"
|
|
14925
|
+
},
|
|
14926
|
+
"kind": "map"
|
|
14927
|
+
}
|
|
14928
|
+
}
|
|
14929
|
+
},
|
|
14930
|
+
{
|
|
14931
|
+
"abstract": true,
|
|
14932
|
+
"docs": {
|
|
14933
|
+
"see": "https://typedoc.org/documents/Options.Output.html#searchincomments",
|
|
14934
|
+
"stability": "stable",
|
|
14935
|
+
"summary": "If set, the search index will also include comments."
|
|
14936
|
+
},
|
|
14937
|
+
"immutable": true,
|
|
14938
|
+
"locationInModule": {
|
|
14939
|
+
"filename": "src/components/typedoc-config.ts",
|
|
14940
|
+
"line": 271
|
|
14941
|
+
},
|
|
14942
|
+
"name": "searchInComments",
|
|
14943
|
+
"optional": true,
|
|
14944
|
+
"type": {
|
|
14945
|
+
"primitive": "boolean"
|
|
14946
|
+
}
|
|
14947
|
+
},
|
|
14948
|
+
{
|
|
14949
|
+
"abstract": true,
|
|
14950
|
+
"docs": {
|
|
14951
|
+
"see": "https://typedoc.org/documents/Options.Output.html#searchindocuments",
|
|
14952
|
+
"stability": "stable",
|
|
14953
|
+
"summary": "If set, the search index will also include documents."
|
|
14954
|
+
},
|
|
14955
|
+
"immutable": true,
|
|
14956
|
+
"locationInModule": {
|
|
14957
|
+
"filename": "src/components/typedoc-config.ts",
|
|
14958
|
+
"line": 278
|
|
14959
|
+
},
|
|
14960
|
+
"name": "searchInDocuments",
|
|
14961
|
+
"optional": true,
|
|
14962
|
+
"type": {
|
|
14963
|
+
"primitive": "boolean"
|
|
14964
|
+
}
|
|
14965
|
+
},
|
|
14966
|
+
{
|
|
14967
|
+
"abstract": true,
|
|
14968
|
+
"docs": {
|
|
14969
|
+
"see": "https://typedoc.org/documents/Options.Organization.html#sort",
|
|
14970
|
+
"stability": "stable",
|
|
14971
|
+
"summary": "Specify the sort strategy for documented values."
|
|
14972
|
+
},
|
|
14973
|
+
"immutable": true,
|
|
14974
|
+
"locationInModule": {
|
|
14975
|
+
"filename": "src/components/typedoc-config.ts",
|
|
14976
|
+
"line": 138
|
|
14977
|
+
},
|
|
14978
|
+
"name": "sort",
|
|
14979
|
+
"optional": true,
|
|
14980
|
+
"type": {
|
|
14981
|
+
"collection": {
|
|
14982
|
+
"elementtype": {
|
|
14983
|
+
"primitive": "string"
|
|
14984
|
+
},
|
|
14985
|
+
"kind": "array"
|
|
14986
|
+
}
|
|
14987
|
+
}
|
|
14988
|
+
},
|
|
14989
|
+
{
|
|
14990
|
+
"abstract": true,
|
|
14991
|
+
"docs": {
|
|
14992
|
+
"see": "https://typedoc.org/documents/Options.Organization.html#sortentrypoints",
|
|
14993
|
+
"stability": "stable",
|
|
14994
|
+
"summary": "Specify the sort strategy for static and instance members."
|
|
14995
|
+
},
|
|
14996
|
+
"immutable": true,
|
|
14997
|
+
"locationInModule": {
|
|
14998
|
+
"filename": "src/components/typedoc-config.ts",
|
|
14999
|
+
"line": 145
|
|
15000
|
+
},
|
|
15001
|
+
"name": "sortEntryPoints",
|
|
15002
|
+
"optional": true,
|
|
15003
|
+
"type": {
|
|
15004
|
+
"primitive": "boolean"
|
|
15005
|
+
}
|
|
15006
|
+
},
|
|
15007
|
+
{
|
|
15008
|
+
"abstract": true,
|
|
15009
|
+
"docs": {
|
|
15010
|
+
"see": "https://typedoc.org/documents/Options.Input.html#sourcelinktemplate",
|
|
15011
|
+
"stability": "stable",
|
|
15012
|
+
"summary": "Specify a link template to be used when generating source urls."
|
|
15013
|
+
},
|
|
15014
|
+
"immutable": true,
|
|
15015
|
+
"locationInModule": {
|
|
15016
|
+
"filename": "src/components/typedoc-config.ts",
|
|
15017
|
+
"line": 229
|
|
15018
|
+
},
|
|
15019
|
+
"name": "sourceLinkTemplate",
|
|
15020
|
+
"optional": true,
|
|
15021
|
+
"type": {
|
|
15022
|
+
"primitive": "string"
|
|
15023
|
+
}
|
|
15024
|
+
},
|
|
15025
|
+
{
|
|
15026
|
+
"abstract": true,
|
|
15027
|
+
"docs": {
|
|
15028
|
+
"see": "https://typedoc.org/documents/Options.Output.html#theme",
|
|
15029
|
+
"stability": "stable",
|
|
15030
|
+
"summary": "Specify a theme name to use."
|
|
15031
|
+
},
|
|
15032
|
+
"immutable": true,
|
|
15033
|
+
"locationInModule": {
|
|
15034
|
+
"filename": "src/components/typedoc-config.ts",
|
|
15035
|
+
"line": 75
|
|
15036
|
+
},
|
|
15037
|
+
"name": "theme",
|
|
15038
|
+
"optional": true,
|
|
15039
|
+
"type": {
|
|
15040
|
+
"primitive": "string"
|
|
15041
|
+
}
|
|
15042
|
+
},
|
|
15043
|
+
{
|
|
15044
|
+
"abstract": true,
|
|
15045
|
+
"docs": {
|
|
15046
|
+
"see": "https://typedoc.org/documents/Options.Validation.html#treatvalidationwarningsaserrors",
|
|
15047
|
+
"stability": "stable",
|
|
15048
|
+
"summary": "If set, validation warnings will be treated as errors."
|
|
15049
|
+
},
|
|
15050
|
+
"immutable": true,
|
|
15051
|
+
"locationInModule": {
|
|
15052
|
+
"filename": "src/components/typedoc-config.ts",
|
|
15053
|
+
"line": 306
|
|
15054
|
+
},
|
|
15055
|
+
"name": "treatValidationWarningsAsErrors",
|
|
15056
|
+
"optional": true,
|
|
15057
|
+
"type": {
|
|
15058
|
+
"primitive": "boolean"
|
|
15059
|
+
}
|
|
15060
|
+
},
|
|
15061
|
+
{
|
|
15062
|
+
"abstract": true,
|
|
15063
|
+
"docs": {
|
|
15064
|
+
"see": "https://typedoc.org/documents/Options.Validation.html#treatwarningsaserrors",
|
|
15065
|
+
"stability": "stable",
|
|
15066
|
+
"summary": "If set, warnings will be treated as errors."
|
|
15067
|
+
},
|
|
15068
|
+
"immutable": true,
|
|
15069
|
+
"locationInModule": {
|
|
15070
|
+
"filename": "src/components/typedoc-config.ts",
|
|
15071
|
+
"line": 299
|
|
15072
|
+
},
|
|
15073
|
+
"name": "treatWarningsAsErrors",
|
|
15074
|
+
"optional": true,
|
|
15075
|
+
"type": {
|
|
15076
|
+
"primitive": "boolean"
|
|
15077
|
+
}
|
|
15078
|
+
},
|
|
15079
|
+
{
|
|
15080
|
+
"abstract": true,
|
|
15081
|
+
"docs": {
|
|
15082
|
+
"see": "https://typedoc.org/documents/Options.Input.html#tsbuildinfo",
|
|
15083
|
+
"stability": "stable",
|
|
15084
|
+
"summary": "Specify the location and filename a .tsbuildinfo file should be written to."
|
|
15085
|
+
},
|
|
15086
|
+
"immutable": true,
|
|
15087
|
+
"locationInModule": {
|
|
15088
|
+
"filename": "src/components/typedoc-config.ts",
|
|
15089
|
+
"line": 117
|
|
15090
|
+
},
|
|
15091
|
+
"name": "tsBuildInfo",
|
|
15092
|
+
"optional": true,
|
|
15093
|
+
"type": {
|
|
15094
|
+
"primitive": "string"
|
|
15095
|
+
}
|
|
15096
|
+
},
|
|
15097
|
+
{
|
|
15098
|
+
"abstract": true,
|
|
15099
|
+
"docs": {
|
|
15100
|
+
"see": "https://typedoc.org/documents/Options.Input.html#tsconfig",
|
|
15101
|
+
"stability": "stable",
|
|
15102
|
+
"summary": "Specify a TypeScript config file that should be used to load TypeScript configuration."
|
|
15103
|
+
},
|
|
15104
|
+
"immutable": true,
|
|
15105
|
+
"locationInModule": {
|
|
15106
|
+
"filename": "src/components/typedoc-config.ts",
|
|
15107
|
+
"line": 124
|
|
15108
|
+
},
|
|
15109
|
+
"name": "tsconfig",
|
|
15110
|
+
"optional": true,
|
|
15111
|
+
"type": {
|
|
15112
|
+
"primitive": "string"
|
|
15113
|
+
}
|
|
15114
|
+
},
|
|
15115
|
+
{
|
|
15116
|
+
"abstract": true,
|
|
15117
|
+
"docs": {
|
|
15118
|
+
"see": "https://typedoc.org/documents/Options.Validation.html",
|
|
15119
|
+
"stability": "stable",
|
|
15120
|
+
"summary": "Specify validation options."
|
|
15121
|
+
},
|
|
15122
|
+
"immutable": true,
|
|
15123
|
+
"locationInModule": {
|
|
15124
|
+
"filename": "src/components/typedoc-config.ts",
|
|
15125
|
+
"line": 285
|
|
15126
|
+
},
|
|
15127
|
+
"name": "validation",
|
|
15128
|
+
"optional": true,
|
|
15129
|
+
"type": {
|
|
15130
|
+
"fqn": "@nikovirtala/projen-constructs.ValidationOptions"
|
|
15131
|
+
}
|
|
15132
|
+
}
|
|
15133
|
+
],
|
|
15134
|
+
"symbolId": "src/components/typedoc-config:TypeDocConfiguration"
|
|
15135
|
+
},
|
|
15136
|
+
"@nikovirtala/projen-constructs.TypeDocOptions": {
|
|
15137
|
+
"assembly": "@nikovirtala/projen-constructs",
|
|
15138
|
+
"datatype": true,
|
|
15139
|
+
"docs": {
|
|
15140
|
+
"stability": "stable"
|
|
15141
|
+
},
|
|
15142
|
+
"fqn": "@nikovirtala/projen-constructs.TypeDocOptions",
|
|
15143
|
+
"kind": "interface",
|
|
15144
|
+
"locationInModule": {
|
|
15145
|
+
"filename": "src/components/typedoc.ts",
|
|
15146
|
+
"line": 20
|
|
15147
|
+
},
|
|
15148
|
+
"name": "TypeDocOptions",
|
|
15149
|
+
"properties": [
|
|
15150
|
+
{
|
|
15151
|
+
"abstract": true,
|
|
15152
|
+
"docs": {
|
|
15153
|
+
"remarks": "This configuration will be merged with the default configuration",
|
|
15154
|
+
"stability": "stable",
|
|
15155
|
+
"summary": "Full TypeDoc configuration."
|
|
15156
|
+
},
|
|
15157
|
+
"immutable": true,
|
|
15158
|
+
"locationInModule": {
|
|
15159
|
+
"filename": "src/components/typedoc.ts",
|
|
15160
|
+
"line": 33
|
|
15161
|
+
},
|
|
15162
|
+
"name": "typeDocConfig",
|
|
15163
|
+
"optional": true,
|
|
15164
|
+
"type": {
|
|
15165
|
+
"fqn": "@nikovirtala/projen-constructs.TypeDocConfiguration"
|
|
15166
|
+
}
|
|
15167
|
+
},
|
|
15168
|
+
{
|
|
15169
|
+
"abstract": true,
|
|
15170
|
+
"docs": {
|
|
15171
|
+
"default": "\"^0.28\"",
|
|
15172
|
+
"stability": "stable",
|
|
15173
|
+
"summary": "Version of TypeDoc to use."
|
|
15174
|
+
},
|
|
15175
|
+
"immutable": true,
|
|
15176
|
+
"locationInModule": {
|
|
15177
|
+
"filename": "src/components/typedoc.ts",
|
|
15178
|
+
"line": 26
|
|
15179
|
+
},
|
|
15180
|
+
"name": "version",
|
|
15181
|
+
"optional": true,
|
|
15182
|
+
"type": {
|
|
15183
|
+
"primitive": "string"
|
|
15184
|
+
}
|
|
15185
|
+
}
|
|
15186
|
+
],
|
|
15187
|
+
"symbolId": "src/components/typedoc:TypeDocOptions"
|
|
15188
|
+
},
|
|
15189
|
+
"@nikovirtala/projen-constructs.TypeScriptProject": {
|
|
15190
|
+
"assembly": "@nikovirtala/projen-constructs",
|
|
15191
|
+
"base": "projen.typescript.TypeScriptProject",
|
|
15192
|
+
"docs": {
|
|
15193
|
+
"remarks": "Extends Projen's base class with opinionated defaults and automatic component setup.",
|
|
15194
|
+
"stability": "stable",
|
|
15195
|
+
"summary": "TypeScriptProject with standard configuration and component integration."
|
|
15196
|
+
},
|
|
15197
|
+
"fqn": "@nikovirtala/projen-constructs.TypeScriptProject",
|
|
15198
|
+
"initializer": {
|
|
15199
|
+
"docs": {
|
|
15200
|
+
"stability": "stable"
|
|
15201
|
+
},
|
|
15202
|
+
"locationInModule": {
|
|
15203
|
+
"filename": "src/projects/typescript.generated.ts",
|
|
15204
|
+
"line": 20
|
|
15205
|
+
},
|
|
15206
|
+
"parameters": [
|
|
15207
|
+
{
|
|
15208
|
+
"docs": {
|
|
15209
|
+
"summary": "- Project configuration."
|
|
15210
|
+
},
|
|
15211
|
+
"name": "options",
|
|
15212
|
+
"type": {
|
|
15213
|
+
"fqn": "@nikovirtala/projen-constructs.TypeScriptProjectOptions"
|
|
15214
|
+
}
|
|
15215
|
+
}
|
|
15216
|
+
]
|
|
15217
|
+
},
|
|
15218
|
+
"kind": "class",
|
|
15219
|
+
"locationInModule": {
|
|
15220
|
+
"filename": "src/projects/typescript.generated.ts",
|
|
15221
|
+
"line": 16
|
|
15222
|
+
},
|
|
15223
|
+
"name": "TypeScriptProject",
|
|
15224
|
+
"symbolId": "src/projects/typescript.generated:TypeScriptProject"
|
|
15225
|
+
},
|
|
15226
|
+
"@nikovirtala/projen-constructs.TypeScriptProjectOptions": {
|
|
15227
|
+
"assembly": "@nikovirtala/projen-constructs",
|
|
15228
|
+
"datatype": true,
|
|
15229
|
+
"docs": {
|
|
15230
|
+
"stability": "stable",
|
|
15231
|
+
"summary": "TypeScriptProjectOptions."
|
|
15232
|
+
},
|
|
15233
|
+
"fqn": "@nikovirtala/projen-constructs.TypeScriptProjectOptions",
|
|
15234
|
+
"kind": "interface",
|
|
15235
|
+
"locationInModule": {
|
|
15236
|
+
"filename": "src/projects/typescript-options.generated.ts",
|
|
15237
|
+
"line": 8
|
|
15238
|
+
},
|
|
15239
|
+
"name": "TypeScriptProjectOptions",
|
|
15240
|
+
"properties": [
|
|
15241
|
+
{
|
|
15242
|
+
"abstract": true,
|
|
15243
|
+
"docs": {
|
|
15244
|
+
"default": "\"main\"",
|
|
15245
|
+
"stability": "experimental",
|
|
15246
|
+
"summary": "The name of the main release branch."
|
|
15247
|
+
},
|
|
15248
|
+
"immutable": true,
|
|
15249
|
+
"locationInModule": {
|
|
15250
|
+
"filename": "src/projects/typescript-options.generated.ts",
|
|
15251
|
+
"line": 312
|
|
15252
|
+
},
|
|
15253
|
+
"name": "defaultReleaseBranch",
|
|
15254
|
+
"type": {
|
|
15255
|
+
"primitive": "string"
|
|
15256
|
+
}
|
|
15257
|
+
},
|
|
15258
|
+
{
|
|
15259
|
+
"abstract": true,
|
|
15260
|
+
"docs": {
|
|
15261
|
+
"custom": {
|
|
15262
|
+
"featured": "true"
|
|
15263
|
+
},
|
|
15264
|
+
"default": "$BASEDIR",
|
|
15265
|
+
"stability": "experimental",
|
|
15266
|
+
"summary": "This is the name of your project."
|
|
15267
|
+
},
|
|
15268
|
+
"immutable": true,
|
|
15269
|
+
"locationInModule": {
|
|
15270
|
+
"filename": "src/projects/typescript-options.generated.ts",
|
|
15271
|
+
"line": 951
|
|
15272
|
+
},
|
|
15273
|
+
"name": "name",
|
|
15274
|
+
"type": {
|
|
15275
|
+
"primitive": "string"
|
|
15276
|
+
}
|
|
15277
|
+
},
|
|
15278
|
+
{
|
|
15279
|
+
"abstract": true,
|
|
15280
|
+
"docs": {
|
|
15281
|
+
"default": "true",
|
|
15282
|
+
"remarks": "This is normally only allowed for libraries. For apps, there's no meaning\nfor specifying these.",
|
|
15283
|
+
"stability": "experimental",
|
|
15284
|
+
"summary": "Allow the project to include `peerDependencies` and `bundledDependencies`."
|
|
15285
|
+
},
|
|
15286
|
+
"immutable": true,
|
|
15287
|
+
"locationInModule": {
|
|
15288
|
+
"filename": "src/projects/typescript-options.generated.ts",
|
|
15289
|
+
"line": 789
|
|
15290
|
+
},
|
|
15291
|
+
"name": "allowLibraryDependencies",
|
|
15292
|
+
"optional": true,
|
|
15293
|
+
"type": {
|
|
15294
|
+
"primitive": "boolean"
|
|
15295
|
+
}
|
|
15296
|
+
},
|
|
15297
|
+
{
|
|
15298
|
+
"abstract": true,
|
|
15299
|
+
"docs": {
|
|
15300
|
+
"default": "\"dist\"",
|
|
15301
|
+
"stability": "experimental",
|
|
15302
|
+
"summary": "A directory which will contain build artifacts."
|
|
15303
|
+
},
|
|
15304
|
+
"immutable": true,
|
|
15305
|
+
"locationInModule": {
|
|
15306
|
+
"filename": "src/projects/typescript-options.generated.ts",
|
|
15307
|
+
"line": 306
|
|
15308
|
+
},
|
|
15309
|
+
"name": "artifactsDirectory",
|
|
15310
|
+
"optional": true,
|
|
15311
|
+
"type": {
|
|
15312
|
+
"primitive": "string"
|
|
15313
|
+
}
|
|
15314
|
+
},
|
|
15315
|
+
{
|
|
15316
|
+
"abstract": true,
|
|
15317
|
+
"docs": {
|
|
15318
|
+
"default": "false",
|
|
15319
|
+
"remarks": "When enabled, creates an \"audit\" task that checks for known security vulnerabilities\nin dependencies. By default, runs during every build and checks for \"high\" severity\nvulnerabilities or above in all dependencies (including dev dependencies).",
|
|
15320
|
+
"stability": "experimental",
|
|
15321
|
+
"summary": "Run security audit on dependencies."
|
|
15322
|
+
},
|
|
15323
|
+
"immutable": true,
|
|
15324
|
+
"locationInModule": {
|
|
15325
|
+
"filename": "src/projects/typescript-options.generated.ts",
|
|
15326
|
+
"line": 300
|
|
15327
|
+
},
|
|
15328
|
+
"name": "auditDeps",
|
|
15329
|
+
"optional": true,
|
|
15330
|
+
"type": {
|
|
15331
|
+
"primitive": "boolean"
|
|
15332
|
+
}
|
|
15333
|
+
},
|
|
15334
|
+
{
|
|
15335
|
+
"abstract": true,
|
|
15336
|
+
"docs": {
|
|
15337
|
+
"default": "- default options",
|
|
15338
|
+
"stability": "experimental",
|
|
15339
|
+
"summary": "Security audit options."
|
|
14109
15340
|
},
|
|
14110
15341
|
"immutable": true,
|
|
14111
15342
|
"locationInModule": {
|
|
@@ -16614,6 +17845,115 @@
|
|
|
16614
17845
|
],
|
|
16615
17846
|
"symbolId": "src/projects/typescript-options.generated:TypeScriptProjectOptions"
|
|
16616
17847
|
},
|
|
17848
|
+
"@nikovirtala/projen-constructs.ValidationOptions": {
|
|
17849
|
+
"assembly": "@nikovirtala/projen-constructs",
|
|
17850
|
+
"datatype": true,
|
|
17851
|
+
"docs": {
|
|
17852
|
+
"see": "https://typedoc.org/documents/Options.Validation.html",
|
|
17853
|
+
"stability": "stable",
|
|
17854
|
+
"summary": "Validation options."
|
|
17855
|
+
},
|
|
17856
|
+
"fqn": "@nikovirtala/projen-constructs.ValidationOptions",
|
|
17857
|
+
"kind": "interface",
|
|
17858
|
+
"locationInModule": {
|
|
17859
|
+
"filename": "src/components/typedoc-config.ts",
|
|
17860
|
+
"line": 498
|
|
17861
|
+
},
|
|
17862
|
+
"name": "ValidationOptions",
|
|
17863
|
+
"properties": [
|
|
17864
|
+
{
|
|
17865
|
+
"abstract": true,
|
|
17866
|
+
"docs": {
|
|
17867
|
+
"stability": "stable",
|
|
17868
|
+
"summary": "If set, TypeDoc will produce warnings about \\@link tags which will produce broken links."
|
|
17869
|
+
},
|
|
17870
|
+
"immutable": true,
|
|
17871
|
+
"locationInModule": {
|
|
17872
|
+
"filename": "src/components/typedoc-config.ts",
|
|
17873
|
+
"line": 510
|
|
17874
|
+
},
|
|
17875
|
+
"name": "invalidLink",
|
|
17876
|
+
"optional": true,
|
|
17877
|
+
"type": {
|
|
17878
|
+
"primitive": "boolean"
|
|
17879
|
+
}
|
|
17880
|
+
},
|
|
17881
|
+
{
|
|
17882
|
+
"abstract": true,
|
|
17883
|
+
"docs": {
|
|
17884
|
+
"stability": "stable",
|
|
17885
|
+
"summary": "If set, TypeDoc will produce warnings when an exported symbol is not documented."
|
|
17886
|
+
},
|
|
17887
|
+
"immutable": true,
|
|
17888
|
+
"locationInModule": {
|
|
17889
|
+
"filename": "src/components/typedoc-config.ts",
|
|
17890
|
+
"line": 506
|
|
17891
|
+
},
|
|
17892
|
+
"name": "notDocumented",
|
|
17893
|
+
"optional": true,
|
|
17894
|
+
"type": {
|
|
17895
|
+
"primitive": "boolean"
|
|
17896
|
+
}
|
|
17897
|
+
},
|
|
17898
|
+
{
|
|
17899
|
+
"abstract": true,
|
|
17900
|
+
"docs": {
|
|
17901
|
+
"stability": "stable",
|
|
17902
|
+
"summary": "If set, TypeDoc will produce warnings when a symbol is referenced by the documentation."
|
|
17903
|
+
},
|
|
17904
|
+
"immutable": true,
|
|
17905
|
+
"locationInModule": {
|
|
17906
|
+
"filename": "src/components/typedoc-config.ts",
|
|
17907
|
+
"line": 502
|
|
17908
|
+
},
|
|
17909
|
+
"name": "notExported",
|
|
17910
|
+
"optional": true,
|
|
17911
|
+
"type": {
|
|
17912
|
+
"primitive": "boolean"
|
|
17913
|
+
}
|
|
17914
|
+
}
|
|
17915
|
+
],
|
|
17916
|
+
"symbolId": "src/components/typedoc-config:ValidationOptions"
|
|
17917
|
+
},
|
|
17918
|
+
"@nikovirtala/projen-constructs.Visibility": {
|
|
17919
|
+
"assembly": "@nikovirtala/projen-constructs",
|
|
17920
|
+
"docs": {
|
|
17921
|
+
"see": "https://typedoc.org/documents/Options.Comments.html#defaultvisibility",
|
|
17922
|
+
"stability": "stable",
|
|
17923
|
+
"summary": "Specifies the default visibility for members without a visibility tag."
|
|
17924
|
+
},
|
|
17925
|
+
"fqn": "@nikovirtala/projen-constructs.Visibility",
|
|
17926
|
+
"kind": "enum",
|
|
17927
|
+
"locationInModule": {
|
|
17928
|
+
"filename": "src/components/typedoc-config.ts",
|
|
17929
|
+
"line": 478
|
|
17930
|
+
},
|
|
17931
|
+
"members": [
|
|
17932
|
+
{
|
|
17933
|
+
"docs": {
|
|
17934
|
+
"stability": "stable",
|
|
17935
|
+
"summary": "Public visibility - accessible from anywhere."
|
|
17936
|
+
},
|
|
17937
|
+
"name": "PUBLIC"
|
|
17938
|
+
},
|
|
17939
|
+
{
|
|
17940
|
+
"docs": {
|
|
17941
|
+
"stability": "stable",
|
|
17942
|
+
"summary": "Protected visibility - accessible from class and subclasses."
|
|
17943
|
+
},
|
|
17944
|
+
"name": "PROTECTED"
|
|
17945
|
+
},
|
|
17946
|
+
{
|
|
17947
|
+
"docs": {
|
|
17948
|
+
"stability": "stable",
|
|
17949
|
+
"summary": "Private visibility - accessible only within the class."
|
|
17950
|
+
},
|
|
17951
|
+
"name": "PRIVATE"
|
|
17952
|
+
}
|
|
17953
|
+
],
|
|
17954
|
+
"name": "Visibility",
|
|
17955
|
+
"symbolId": "src/components/typedoc-config:Visibility"
|
|
17956
|
+
},
|
|
16617
17957
|
"@nikovirtala/projen-constructs.Vitest": {
|
|
16618
17958
|
"assembly": "@nikovirtala/projen-constructs",
|
|
16619
17959
|
"base": "projen.Component",
|
|
@@ -17247,6 +18587,6 @@
|
|
|
17247
18587
|
"symbolId": "src/components/vitest:VitestOptions"
|
|
17248
18588
|
}
|
|
17249
18589
|
},
|
|
17250
|
-
"version": "0.2.
|
|
17251
|
-
"fingerprint": "
|
|
18590
|
+
"version": "0.2.2",
|
|
18591
|
+
"fingerprint": "SumPhNLQ6k9FqahIo64OQuleXEhvXALSHyphvzBJWNc="
|
|
17252
18592
|
}
|