SuiteCRM-Core/core/app/shell/webpack.config.spec.js
Clemente Raposo aad193930a Add dynamic module federation to build
- Re-setup karma / jasmine tests
-- Fix tsconfig paths
-- Remove no longer needed view and field test imports
-- Add test app-shell specific test command
-- Add karma/jasmine specific webpack configuration
2021-03-30 19:22:44 +01:00

20 lines
308 B
JavaScript

module.exports = {
output: {
uniqueName: "shell"
},
optimization: {
// Only needed to bypass a temporary bug
runtimeChunk: false
},
module: {
rules: [
{
test: /\.m?js/,
resolve: {
fullySpecified: false
}
},
]
},
plugins: [],
};