mirror of
https://gitee.com/newgateway/vtj.git
synced 2026-05-08 04:07:27 +08:00
41 lines
671 B
TypeScript
41 lines
671 B
TypeScript
import { name, version } from './package.json';
|
|
|
|
/**
|
|
* npm 包名、版本号
|
|
*/
|
|
export { name, version };
|
|
|
|
/**
|
|
* 调试项目配置信息
|
|
*/
|
|
export const project: Record<string, any> = {
|
|
id: name,
|
|
name: '物料开发项目',
|
|
platform: 'web'
|
|
};
|
|
|
|
/**
|
|
* 库导出名称
|
|
*/
|
|
export const library = 'VX';
|
|
|
|
/**
|
|
* 物料描述导出名称
|
|
*/
|
|
export const material = 'VXMaterial';
|
|
|
|
/**
|
|
* 物料在设计器组件面板中的标题文本
|
|
*/
|
|
export const label = '扩展库';
|
|
|
|
/**
|
|
* 库产物文件
|
|
*/
|
|
export const outputLibrary = ['dist/style.css', 'dist/index.umd.js'];
|
|
|
|
/**
|
|
* 物料描述产物文件
|
|
*/
|
|
export const outputMaterial = 'dist/material.umd.js';
|