countly-sdk-web-cip
Version:
Countly Web SDK
54 lines (53 loc) • 1.97 kB
JSON
{
"sample-app": {
"configuration": {
"config": {
"configName": "config",
"topScope": [
"const path = require('path');",
"const webpack = require('webpack');",
"\n",
"/*\n * SplitChunksPlugin is enabled by default and replaced\n * deprecated CommonsChunkPlugin. It automatically identifies modules which\n * should be splitted of chunk by heuristics using module duplication count and\n * module category (i. e. node_modules). And splits the chunks…\n *\n * It is safe to remove \"splitChunks\" from the generated configuration\n * and was added as an educational example.\n *\n * https://webpack.js.org/plugins/split-chunks-plugin/\n *\n */",
"/*\n * We've enabled TerserPlugin for you! This minifies your app\n * in order to load faster and run less javascript.\n *\n * https://github.com/webpack-contrib/terser-webpack-plugin\n *\n */",
"const TerserPlugin = require('terser-webpack-plugin');",
"\n"
],
"webpackOptions": {
"mode": "'development'",
"plugins": [
"new webpack.ProgressPlugin()"
],
"module": {
"rules": [
{
"test": "/\\.(js|jsx)$/",
"include": [
"path.resolve(__dirname, 'src')"
],
"loader": "'babel-loader'"
}
]
},
"optimization": {
"minimizer": [
"new TerserPlugin()"
],
"splitChunks": {
"cacheGroups": {
"vendors": {
"priority": -10,
"test": "/[\\\\/]node_modules[\\\\/]/"
}
},
"chunks": "'async'",
"minChunks": 1,
"minSize": 30000,
"name": true
}
}
}
},
"usingDefaults": false
}
}
}