mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-05 19:41:57 +08:00
31 lines
613 B
JavaScript
31 lines
613 B
JavaScript
// utils must build before core
|
|
// runtime must build before renderer-react
|
|
|
|
const pkgs = [
|
|
"fes-runtime",
|
|
"fes-compiler",
|
|
"fes",
|
|
"fes-preset-built-in",
|
|
"fes-plugin-request",
|
|
"fes-plugin-access",
|
|
"fes-plugin-model",
|
|
"fes-plugin-layout",
|
|
"fes-plugin-icon",
|
|
"fes-plugin-locale",
|
|
"fes-plugin-enums",
|
|
"fes-plugin-jest",
|
|
"fes-plugin-vuex",
|
|
"create-fes-app",
|
|
"fes-plugin-qiankun",
|
|
"fes-plugin-sass",
|
|
"fes-plugin-monaco-editor"
|
|
];
|
|
|
|
|
|
export default {
|
|
target: "node",
|
|
cjs: { type: "babel", lazy: false },
|
|
disableTypeCheck: true,
|
|
pkgs,
|
|
};
|