amis/examples/loader.ts
liaoxuezhi d6461ced11
chore: 修复 ts 报错,并加入 pr 检测 (#6785)
* chore: 修复 ts 报错,并加入 pr 检测

* 把类型检测放在前面

* 调整一下顺序

* 类型调整

* 设置 build 编译顺序

* 设置 build 编译顺序
2023-05-05 17:13:06 +08:00

41 lines
1.4 KiB
TypeScript

// 这个文件编译不会包裹,所以手动包裹一下。
(function () {
const __moduleId = (str: string) => '';
const mapping: {
[propName: string]: any;
} = {
'react': __moduleId('react'),
'react-dom': __moduleId('react-dom'),
'immutability-helper': __moduleId('immutability-helper'),
'react-cropper': __moduleId('react-cropper'),
'react-dropzone': __moduleId('react-dropzone'),
'classnames': __moduleId('classnames'),
'axios': __moduleId('axios'),
'exceljs': __moduleId('exceljs'),
'fflate': __moduleId('fflate'),
'moment': __moduleId('moment'),
'mobx': __moduleId('mobx'),
'mobx-state-tree': __moduleId('mobx-state-tree'),
'react-transition-group': __moduleId('react-transition-group'),
'papaparse': __moduleId('papaparse'),
'echarts': __moduleId('echarts'),
'zrender': __moduleId('zrender'),
'sortablejs': __moduleId('sortablejs'),
'amis': __moduleId('amis'),
'amis@@version': __moduleId('amis'),
'amis/embed': __moduleId('./embed.tsx'),
'amis@@version/embed': __moduleId('./embed.tsx'),
'prop-types': __moduleId('prop-types'),
'qs': __moduleId('qs'),
'path-to-regexp': __moduleId('path-to-regexp'),
'history': __moduleId('history')
};
Object.keys(mapping).forEach(key => {
(window as any).amis.require.aliasMapping[key] = mapping[key];
});
(window as any).amisRequire = (window as any).amis.require;
})();