esbuild-plugin-jsonschema 使用esbuild在导入时编译和打包JSON模式定义 安装 该软件包以@offen/esbuild-plugin-jsonschema形式发布到npm: npm install @offen/esbuild-plugin-jsonschema -D 用法 在默认配置中,转换将应用到所有扩展名为.schema文件。 转换后的模块将导出打包的AJV validate功能。 在您的应用程序中: const validateFoo = require ( './foo.schema' ) const ok = validateFoo ( { foo : true } ) if ( ! ok ) { console . log ( validateFoo . errors ) throw new Error ( 'Foo did n