@gluonjs/vue-migration-analyzer
@gluonjs/vue-migration-analyzer / packages/vue-migration-analyzer/src/schema / vueMigrationReportSchema
Variable: vueMigrationReportSchema
constvueMigrationReportSchema:Readonly<Record<string,unknown>>
Frozen public JSON Schema for VueMigrationReport.
Example
Validate or inspect analyzer JSON with the deeply frozen public schema shipped by the package:
import { VUE_MIGRATION_REPORT_SCHEMA_VERSION, vueMigrationReportSchema } from '@gluonjs/vue-migration-analyzer/schema';
const schemaId = vueMigrationReportSchema['$id'];
const required = vueMigrationReportSchema['required'];
console.log(VUE_MIGRATION_REPORT_SCHEMA_VERSION, schemaId, required);