File: examples/symbolication/.yo-rc.json

Recommend this page to a friend!
  Classes of Arturs Sosins   Countly Web SDK   examples/symbolication/.yo-rc.json   Download  
File: examples/symbolication/.yo-rc.json
Role: Example script
Content type: text/plain
Description: Example script
Class: Countly Web SDK
Track site accesses and errors the Countly API
Author: By
Last change:
Date: 1 year ago
Size: 1,974 bytes
 

Contents

Class file image Download
{ "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 } } }