gitextract_1na6sspd/ ├── .eslintignore ├── .eslintrc.json ├── .github/ │ └── workflows/ │ ├── alpha.yml │ ├── default.yml │ ├── deploy.yml │ └── pull_request.yml ├── .gitignore ├── .husky/ │ ├── commit-msg │ └── pre-commit ├── .npmrc ├── .nycrc.json ├── .prettierignore ├── .prettierrc ├── .vscode/ │ ├── launch.json │ └── settings.json ├── LICENSE ├── commitlint.config.js ├── deploy/ │ └── doc/ │ ├── .gitignore │ ├── Gemfile │ ├── _config.yml │ ├── _includes/ │ │ └── language-change.html │ ├── _layouts/ │ │ ├── home.html │ │ ├── post.html │ │ └── redirect.html │ ├── _posts/ │ │ ├── 2022-02-10-无时间测试.md │ │ └── 2022-02-10-测试.md │ ├── assets/ │ │ └── css/ │ │ └── style.scss │ ├── en-US/ │ │ ├── attention.md │ │ ├── index.md │ │ ├── life-time.md │ │ ├── miniprogram-feature.md │ │ └── quick-start.md │ ├── index.md │ └── zh-Hans/ │ ├── attention.md │ ├── index.md │ ├── life-time.md │ ├── miniprogram-feature.md │ └── quick-start.md ├── jasmine.json ├── package.json ├── readme.md ├── script/ │ ├── build-ng-package.ts │ ├── build.ts │ ├── coverage-badge.ts │ ├── package-sync.ts │ ├── registry-transformer.js │ ├── schema-merge.ts │ ├── start-build-library.js │ ├── startup-jasmine.ts │ ├── tsconfig.json │ └── tsconfig.startup-jasmine.json ├── src/ │ ├── builder/ │ │ ├── angular-internal/ │ │ │ ├── ast.type.ts │ │ │ ├── selector.ts │ │ │ ├── tags.ts │ │ │ ├── template.ts │ │ │ └── util.ts │ │ ├── application/ │ │ │ ├── const.ts │ │ │ ├── index.ts │ │ │ ├── library-template-scope.service.ts │ │ │ ├── loader/ │ │ │ │ ├── component-template.loader.ts │ │ │ │ ├── library-template.loader.ts │ │ │ │ ├── library.loader.ts │ │ │ │ └── type.ts │ │ │ ├── mini-program-application-analysis.service.ts │ │ │ ├── plugin/ │ │ │ │ ├── dynamic-library-entry.plugin.ts │ │ │ │ ├── dynamic-watch-entry.plugin.ts │ │ │ │ └── export-mini-program-assets.plugin.ts │ │ │ ├── schema.base.json │ │ │ ├── schema.json │ │ │ ├── token.ts │ │ │ ├── type.ts │ │ │ ├── util/ │ │ │ │ ├── index.ts │ │ │ │ └── set-compilation-asset.ts │ │ │ └── webpack-configuration-change.service.ts │ │ ├── builder.prod.spec.ts │ │ ├── builder.spec.ts │ │ ├── builder.watch.spec.ts │ │ ├── builders.json │ │ ├── component-template-inject/ │ │ │ └── change-component.ts │ │ ├── karma/ │ │ │ ├── client/ │ │ │ │ ├── adapter.ts │ │ │ │ ├── index.ts │ │ │ │ ├── karma.ts │ │ │ │ ├── main.ts │ │ │ │ ├── platform/ │ │ │ │ │ ├── index.ts │ │ │ │ │ └── wx/ │ │ │ │ │ └── index.ts │ │ │ │ ├── tsconfig.json │ │ │ │ └── updater.ts │ │ │ ├── index.origin.ts │ │ │ ├── index.spec.ts │ │ │ ├── index.ts │ │ │ ├── plugin/ │ │ │ │ ├── index.js │ │ │ │ ├── index.ts │ │ │ │ ├── karma.ts │ │ │ │ ├── launcher.ts │ │ │ │ └── tsconfig.json │ │ │ └── schema.json │ │ ├── library/ │ │ │ ├── add-declaration-metadata.service.ts │ │ │ ├── builder.ts │ │ │ ├── compile-ngc.transform.ts │ │ │ ├── compile-source-files.ts │ │ │ ├── const.ts │ │ │ ├── get-library-path.ts │ │ │ ├── index.ts │ │ │ ├── library.spec.ts │ │ │ ├── merge-using-component-path.ts │ │ │ ├── ng-packagr-factory.ts │ │ │ ├── output-template-metadata.service.ts │ │ │ ├── remove-publish-only.ts │ │ │ ├── schema.json │ │ │ ├── setup-component-data.service.ts │ │ │ ├── stylesheet-processor.ts │ │ │ ├── token.ts │ │ │ └── type.ts │ │ ├── mini-program-compiler/ │ │ │ ├── component-compiler.service.ts │ │ │ ├── index.ts │ │ │ ├── meta-collection.ts │ │ │ ├── mini-program-compiler.service.ts │ │ │ ├── parse-node/ │ │ │ │ ├── bound-text.ts │ │ │ │ ├── component-context.ts │ │ │ │ ├── content.ts │ │ │ │ ├── element.ts │ │ │ │ ├── index.ts │ │ │ │ ├── interface.ts │ │ │ │ ├── template-definition.ts │ │ │ │ ├── template.ts │ │ │ │ ├── text.ts │ │ │ │ └── type.ts │ │ │ └── type.ts │ │ ├── platform/ │ │ │ ├── bd/ │ │ │ │ ├── bdzn-platform.ts │ │ │ │ └── bdzn.transform.ts │ │ │ ├── dd/ │ │ │ │ ├── dd-platform.ts │ │ │ │ └── dd.transform.ts │ │ │ ├── index.ts │ │ │ ├── jd/ │ │ │ │ ├── jd-platform.ts │ │ │ │ └── jd.transform.ts │ │ │ ├── library/ │ │ │ │ ├── library-platform.ts │ │ │ │ └── library.transform.ts │ │ │ ├── platform-inject-config.ts │ │ │ ├── platform.ts │ │ │ ├── qq/ │ │ │ │ ├── qq-platform.ts │ │ │ │ └── qq.transform.ts │ │ │ ├── template/ │ │ │ │ └── app-template.js │ │ │ ├── template-transform-strategy/ │ │ │ │ ├── transform.base.ts │ │ │ │ └── wx-like/ │ │ │ │ ├── wx-container.ts │ │ │ │ └── wx-transform.base.ts │ │ │ ├── type.ts │ │ │ ├── util/ │ │ │ │ ├── dataset-bind.ts │ │ │ │ └── type-predicate.ts │ │ │ ├── wx/ │ │ │ │ ├── wx-platform.ts │ │ │ │ └── wx.transform.ts │ │ │ ├── zfb/ │ │ │ │ ├── zfb-platform.ts │ │ │ │ └── zfb.transform.ts │ │ │ └── zjtd/ │ │ │ ├── zj-platform.ts │ │ │ └── zj.transform.ts │ │ ├── test/ │ │ │ └── fixture/ │ │ │ └── watch/ │ │ │ └── sub3/ │ │ │ ├── sub3.component.html │ │ │ ├── sub3.component.ts │ │ │ ├── sub3.entry.ts │ │ │ └── sub3.module.ts │ │ ├── token/ │ │ │ └── component.token.ts │ │ └── util/ │ │ ├── index.ts │ │ ├── library-template-scope-name.ts │ │ ├── literal-resolve.ts │ │ ├── load_esm.ts │ │ ├── raw-updater.spec.ts │ │ ├── raw-updater.ts │ │ └── run-script.ts │ └── library/ │ ├── common/ │ │ ├── .gitignore │ │ └── ng-package.json │ ├── declaration/ │ │ └── index.d.ts │ ├── forms/ │ │ ├── .gitignore │ │ ├── ng-package.json │ │ ├── readme.md │ │ └── src/ │ │ ├── directives/ │ │ │ ├── checkbox_value_accessor.ts │ │ │ ├── default_value_accessor.ts │ │ │ ├── picker_value_accessor.ts │ │ │ ├── picker_view_value_accessor.ts │ │ │ ├── radio_control_value_accessor.ts │ │ │ ├── slider_value_accessor.ts │ │ │ └── switch_value_accessor.ts │ │ ├── directives.ts │ │ └── forms.ts │ ├── index.ts │ ├── ng-package.json │ ├── package.json │ └── platform/ │ ├── bd/ │ │ ├── index.ts │ │ ├── ng-package.json │ │ └── platform-core.ts │ ├── dd/ │ │ ├── index.ts │ │ ├── ng-package.json │ │ └── platform-core.ts │ ├── default/ │ │ ├── agent-node.spec.ts │ │ ├── agent-node.ts │ │ ├── component-finder.service.ts │ │ ├── component-template-hook.factory.ts │ │ ├── diff-node-data.spec.ts │ │ ├── diff-node-data.ts │ │ ├── index.ts │ │ ├── mini-program.renderer.factory.ts │ │ ├── mini-program.renderer.ts │ │ ├── ng-package.json │ │ ├── platform-core.ts │ │ └── token.ts │ ├── http/ │ │ ├── README.md │ │ ├── backend.ts │ │ ├── index.ts │ │ ├── module.ts │ │ ├── provider.ts │ │ └── response.ts │ ├── index.ts │ ├── jd/ │ │ ├── index.ts │ │ ├── ng-package.json │ │ └── platform-core.ts │ ├── mini-program.module.ts │ ├── ng-package.json │ ├── page.service.ts │ ├── platform-miniprogram.ts │ ├── qq/ │ │ ├── index.ts │ │ ├── ng-package.json │ │ └── platform-core.ts │ ├── token.ts │ ├── type/ │ │ ├── index.ts │ │ ├── internal-type.ts │ │ ├── ng-package.json │ │ └── type.ts │ ├── wx/ │ │ ├── index.ts │ │ └── ng-package.json │ ├── zfb/ │ │ ├── index.ts │ │ ├── ng-package.json │ │ └── platform-core.ts │ └── zjtd/ │ ├── index.ts │ ├── ng-package.json │ └── platform-core.ts ├── test/ │ ├── hello-world-app/ │ │ ├── .browserslistrc │ │ ├── .gitignore │ │ ├── angular.json │ │ ├── karma.conf.js │ │ ├── projects/ │ │ │ └── test-library/ │ │ │ ├── .browserslistrc │ │ │ ├── ng-package.json │ │ │ ├── package.json │ │ │ ├── src/ │ │ │ │ ├── directive/ │ │ │ │ │ ├── directive.module.ts │ │ │ │ │ └── input-output.directive.ts │ │ │ │ ├── global-self-template/ │ │ │ │ │ ├── global-self-template.component.css │ │ │ │ │ ├── global-self-template.component.html │ │ │ │ │ ├── global-self-template.component.ts │ │ │ │ │ └── global-self-template.module.ts │ │ │ │ ├── lib/ │ │ │ │ │ ├── test-library.component.scss │ │ │ │ │ ├── test-library.component.spec.ts │ │ │ │ │ ├── test-library.component.ts │ │ │ │ │ ├── test-library.directive.ts │ │ │ │ │ ├── test-library.module.ts │ │ │ │ │ ├── test-library.service.spec.ts │ │ │ │ │ └── test-library.service.ts │ │ │ │ ├── lib-comp1/ │ │ │ │ │ ├── lib-comp1.component.css │ │ │ │ │ ├── lib-comp1.component.html │ │ │ │ │ ├── lib-comp1.component.ts │ │ │ │ │ ├── lib-comp1.module.ts │ │ │ │ │ └── lib-dir1.directive.ts │ │ │ │ ├── other/ │ │ │ │ │ ├── other.component.css │ │ │ │ │ ├── other.component.html │ │ │ │ │ ├── other.component.ts │ │ │ │ │ └── other.module.ts │ │ │ │ ├── outside-template/ │ │ │ │ │ ├── outside-template.component.css │ │ │ │ │ ├── outside-template.component.html │ │ │ │ │ ├── outside-template.component.ts │ │ │ │ │ └── outside-template.module.ts │ │ │ │ └── public-api.ts │ │ │ ├── tsconfig.lib.json │ │ │ ├── tsconfig.lib.prod.json │ │ │ └── tsconfig.spec.json │ │ ├── src/ │ │ │ ├── __components/ │ │ │ │ ├── component-need-template/ │ │ │ │ │ ├── component-need-template.component.css │ │ │ │ │ ├── component-need-template.component.html │ │ │ │ │ ├── component-need-template.component.ts │ │ │ │ │ ├── component-need-template.entry.ts │ │ │ │ │ └── component-need-template.module.ts │ │ │ │ ├── component1/ │ │ │ │ │ ├── component1.component.css │ │ │ │ │ ├── component1.component.html │ │ │ │ │ ├── component1.component.ts │ │ │ │ │ ├── component1.entry.ts │ │ │ │ │ └── component1.module.ts │ │ │ │ ├── component2/ │ │ │ │ │ ├── component2.component.css │ │ │ │ │ ├── component2.component.html │ │ │ │ │ ├── component2.component.ts │ │ │ │ │ ├── component2.entry.ts │ │ │ │ │ └── component2.module.ts │ │ │ │ ├── component3/ │ │ │ │ │ ├── component3.component.css │ │ │ │ │ ├── component3.component.html │ │ │ │ │ ├── component3.component.ts │ │ │ │ │ └── component3.entry.ts │ │ │ │ ├── content/ │ │ │ │ │ ├── content.component.css │ │ │ │ │ ├── content.component.html │ │ │ │ │ ├── content.component.ts │ │ │ │ │ ├── content.entry.ts │ │ │ │ │ └── content.module.ts │ │ │ │ ├── content-multi/ │ │ │ │ │ ├── content-multi.component.css │ │ │ │ │ ├── content-multi.component.html │ │ │ │ │ ├── content-multi.component.ts │ │ │ │ │ ├── content-multi.entry.ts │ │ │ │ │ └── content-multi.module.ts │ │ │ │ └── life-time/ │ │ │ │ ├── life-time.component.html │ │ │ │ ├── life-time.component.ts │ │ │ │ └── life-time.entry.ts │ │ │ ├── __pages/ │ │ │ │ ├── base-component/ │ │ │ │ │ ├── base-component.component.css │ │ │ │ │ ├── base-component.component.html │ │ │ │ │ ├── base-component.component.ts │ │ │ │ │ ├── base-component.entry.ts │ │ │ │ │ └── base-component.module.ts │ │ │ │ ├── base-directive/ │ │ │ │ │ ├── base-directive.component.css │ │ │ │ │ ├── base-directive.component.html │ │ │ │ │ ├── base-directive.component.ts │ │ │ │ │ ├── base-directive.entry.ts │ │ │ │ │ ├── base-directive.module.ts │ │ │ │ │ └── directive1.directive.ts │ │ │ │ ├── base-forms/ │ │ │ │ │ ├── base-forms.component.css │ │ │ │ │ ├── base-forms.component.html │ │ │ │ │ ├── base-forms.component.ts │ │ │ │ │ ├── base-forms.entry.ts │ │ │ │ │ └── base-forms.module.ts │ │ │ │ ├── base-http/ │ │ │ │ │ ├── base-http.component.css │ │ │ │ │ ├── base-http.component.html │ │ │ │ │ ├── base-http.component.ts │ │ │ │ │ ├── base-http.entry.ts │ │ │ │ │ └── base-http.module.ts │ │ │ │ ├── base-tap/ │ │ │ │ │ ├── base-tap.component.css │ │ │ │ │ ├── base-tap.component.html │ │ │ │ │ ├── base-tap.component.ts │ │ │ │ │ ├── base-tap.entry.ts │ │ │ │ │ └── base-tap.module.ts │ │ │ │ ├── complex-property-event/ │ │ │ │ │ ├── app-dir1.directive.ts │ │ │ │ │ ├── complex-property-event.component.css │ │ │ │ │ ├── complex-property-event.component.html │ │ │ │ │ ├── complex-property-event.component.ts │ │ │ │ │ ├── complex-property-event.entry.ts │ │ │ │ │ └── complex-property-event.module.ts │ │ │ │ ├── complex-structure/ │ │ │ │ │ ├── complex-structure.component.css │ │ │ │ │ ├── complex-structure.component.html │ │ │ │ │ ├── complex-structure.component.ts │ │ │ │ │ ├── complex-structure.entry.ts │ │ │ │ │ └── complex-structure.module.ts │ │ │ │ ├── component-use-template/ │ │ │ │ │ ├── component-use-template.component.css │ │ │ │ │ ├── component-use-template.component.html │ │ │ │ │ ├── component-use-template.component.ts │ │ │ │ │ ├── component-use-template.entry.ts │ │ │ │ │ └── component-use-template.module.ts │ │ │ │ ├── custom-structural-directive/ │ │ │ │ │ ├── custom-structural-directive.component.css │ │ │ │ │ ├── custom-structural-directive.component.html │ │ │ │ │ ├── custom-structural-directive.component.ts │ │ │ │ │ ├── custom-structural-directive.entry.ts │ │ │ │ │ ├── custom-structural-directive.module.ts │ │ │ │ │ └── structural1.directive.ts │ │ │ │ ├── default-structural-directive/ │ │ │ │ │ ├── default-structural-directive.component.css │ │ │ │ │ ├── default-structural-directive.component.html │ │ │ │ │ ├── default-structural-directive.component.ts │ │ │ │ │ ├── default-structural-directive.entry.ts │ │ │ │ │ └── default-structural-directive.module.ts │ │ │ │ ├── life-time-page/ │ │ │ │ │ ├── life-time-page.entry.ts │ │ │ │ │ ├── life-time.component.html │ │ │ │ │ ├── life-time.component.ts │ │ │ │ │ └── life-time.module.ts │ │ │ │ ├── life-time-page-use-component/ │ │ │ │ │ ├── life-time-page-use-component.entry.ts │ │ │ │ │ ├── life-time.component.html │ │ │ │ │ ├── life-time.component.ts │ │ │ │ │ └── life-time.module.ts │ │ │ │ ├── ng-content/ │ │ │ │ │ ├── ng-content.component.css │ │ │ │ │ ├── ng-content.component.html │ │ │ │ │ ├── ng-content.component.ts │ │ │ │ │ ├── ng-content.entry.ts │ │ │ │ │ └── ng-content.module.ts │ │ │ │ ├── root/ │ │ │ │ │ ├── root.component.css │ │ │ │ │ ├── root.component.html │ │ │ │ │ ├── root.component.ts │ │ │ │ │ ├── root.entry.ts │ │ │ │ │ └── root.module.ts │ │ │ │ └── self-component/ │ │ │ │ ├── self-component.component.css │ │ │ │ ├── self-component.component.html │ │ │ │ ├── self-component.component.ts │ │ │ │ ├── self-component.entry.ts │ │ │ │ └── self-component.module.ts │ │ │ ├── app.json │ │ │ ├── assets/ │ │ │ │ └── .gitkeep │ │ │ ├── environments/ │ │ │ │ ├── environment.prod.ts │ │ │ │ └── environment.ts │ │ │ ├── main-test.module.ts │ │ │ ├── main.module.ts │ │ │ ├── main.ts │ │ │ ├── project.config.json │ │ │ ├── spec/ │ │ │ │ ├── empty/ │ │ │ │ │ ├── empty.component.ts │ │ │ │ │ ├── empty.entry.ts │ │ │ │ │ └── empty.module.ts │ │ │ │ ├── http-spec/ │ │ │ │ │ ├── http-spec.entry.ts │ │ │ │ │ ├── http.component.ts │ │ │ │ │ ├── http.module.ts │ │ │ │ │ └── http.spec.ts │ │ │ │ ├── life-time-spec/ │ │ │ │ │ ├── life-time-spec.entry.ts │ │ │ │ │ ├── life-time.component.ts │ │ │ │ │ ├── life-time.module.ts │ │ │ │ │ └── life-time.spec.ts │ │ │ │ ├── ng-content-spec/ │ │ │ │ │ ├── ng-content-spec.entry.ts │ │ │ │ │ ├── ng-content.component.ts │ │ │ │ │ ├── ng-content.module.ts │ │ │ │ │ └── ng-content.spec.ts │ │ │ │ ├── ng-for-spec/ │ │ │ │ │ ├── ng-for-spec.entry.ts │ │ │ │ │ ├── ng-for.component.ts │ │ │ │ │ ├── ng-for.module.ts │ │ │ │ │ └── ng-for.spec.ts │ │ │ │ ├── ng-if-spec/ │ │ │ │ │ ├── ng-if-spec.entry.ts │ │ │ │ │ ├── ng-if.component.ts │ │ │ │ │ ├── ng-if.module.ts │ │ │ │ │ └── ng-if.spec.ts │ │ │ │ ├── ng-library-import-spec/ │ │ │ │ │ ├── ng-library-import-spec.entry.ts │ │ │ │ │ ├── ng-library-import.component.ts │ │ │ │ │ ├── ng-library-import.module.ts │ │ │ │ │ └── ng-library-import.spec.ts │ │ │ │ ├── ng-switch-spec/ │ │ │ │ │ ├── ng-switch-spec.entry.ts │ │ │ │ │ ├── ng-switch.component.ts │ │ │ │ │ ├── ng-switch.module.ts │ │ │ │ │ └── ng-switch.spec.ts │ │ │ │ ├── ng-template-outlet-spec/ │ │ │ │ │ ├── ng-template-outlet-spec.entry.ts │ │ │ │ │ ├── ng-template-outlet.component.ts │ │ │ │ │ ├── ng-template-outlet.module.ts │ │ │ │ │ └── ng-template-outlet.spec.ts │ │ │ │ ├── self-template-spec/ │ │ │ │ │ ├── self-template-spec.entry.ts │ │ │ │ │ ├── self-template.component.ts │ │ │ │ │ ├── self-template.module.ts │ │ │ │ │ └── self-template.spec.ts │ │ │ │ ├── style-class-spec/ │ │ │ │ │ ├── style-class-spec.component.ts │ │ │ │ │ ├── style-class-spec.entry.ts │ │ │ │ │ ├── style-class-spec.module.ts │ │ │ │ │ └── style-class-spec.spec.ts │ │ │ │ ├── tag-view-convert-spec/ │ │ │ │ │ ├── tag-view-convert-spec.entry.ts │ │ │ │ │ ├── tag-view-convert.component.ts │ │ │ │ │ ├── tag-view-convert.module.ts │ │ │ │ │ └── tag-view-convert.spec.ts │ │ │ │ └── util/ │ │ │ │ ├── index.ts │ │ │ │ ├── node-query.ts │ │ │ │ ├── open-component.ts │ │ │ │ └── page-info.ts │ │ │ ├── spec-component/ │ │ │ │ ├── life-time/ │ │ │ │ │ ├── life-time.component.ts │ │ │ │ │ ├── life-time.entry.ts │ │ │ │ │ └── life-time.module.ts │ │ │ │ ├── ng-content/ │ │ │ │ │ ├── ng-content.component.html │ │ │ │ │ ├── ng-content.component.ts │ │ │ │ │ ├── ng-content.entry.ts │ │ │ │ │ └── ng-content.module.ts │ │ │ │ ├── ng-for/ │ │ │ │ │ ├── ng-for.component.html │ │ │ │ │ ├── ng-for.component.ts │ │ │ │ │ ├── ng-for.entry.ts │ │ │ │ │ └── ng-for.module.ts │ │ │ │ ├── ng-if/ │ │ │ │ │ ├── ng-if.component.html │ │ │ │ │ ├── ng-if.component.ts │ │ │ │ │ ├── ng-if.entry.ts │ │ │ │ │ └── ng-if.module.ts │ │ │ │ ├── ng-library-import/ │ │ │ │ │ ├── ng-library-import.component.html │ │ │ │ │ ├── ng-library-import.component.ts │ │ │ │ │ ├── ng-library-import.entry.ts │ │ │ │ │ └── ng-library-import.module.ts │ │ │ │ ├── ng-switch/ │ │ │ │ │ ├── ng-switch.component.html │ │ │ │ │ ├── ng-switch.component.ts │ │ │ │ │ ├── ng-switch.entry.ts │ │ │ │ │ └── ng-switch.module.ts │ │ │ │ ├── ng-template-outlet/ │ │ │ │ │ ├── ng-template-outlet.component.html │ │ │ │ │ ├── ng-template-outlet.component.ts │ │ │ │ │ ├── ng-template-outlet.entry.ts │ │ │ │ │ └── ng-template-outlet.module.ts │ │ │ │ ├── self-template/ │ │ │ │ │ ├── self-template.component.html │ │ │ │ │ ├── self-template.component.ts │ │ │ │ │ ├── self-template.entry.ts │ │ │ │ │ └── self-template.module.ts │ │ │ │ ├── style-class/ │ │ │ │ │ ├── style-class.component.html │ │ │ │ │ ├── style-class.component.ts │ │ │ │ │ ├── style-class.entry.ts │ │ │ │ │ └── style-class.module.ts │ │ │ │ └── tag-view-convert/ │ │ │ │ ├── tag-view-convert.component.html │ │ │ │ ├── tag-view-convert.component.ts │ │ │ │ ├── tag-view-convert.entry.ts │ │ │ │ └── tag-view-convert.module.ts │ │ │ ├── styles.css │ │ │ ├── test.ts │ │ │ ├── tsconfig.app.json │ │ │ ├── tsconfig.dev.json │ │ │ ├── tsconfig.spec.json │ │ │ └── typings.d.ts │ │ ├── tsconfig.base.json │ │ └── tsconfig.json │ ├── plugin-describe-builder/ │ │ └── index.ts │ ├── test-builder/ │ │ ├── index.ts │ │ ├── schema.json │ │ ├── schema.karma.json │ │ └── schema.library.json │ └── util/ │ └── file.ts ├── tsconfig.base.json ├── tsconfig.builder.json ├── tsconfig.doc.json ├── tsconfig.internal-schematics.json ├── tsconfig.json ├── tsconfig.library.json ├── tsconfig.spec.json └── typedoc.json