How the donated funds are distributed
Kivach works on the Obyte network, and therefore you can track all donations.
| MangleOptions; module?: boolean; nameCache?: any; nocompress?: boolean; output?: OutputOptions; parse?: ParseOptions; safari10?: boolean; toplevel?: boolean; warnings?: boolean; format?: { quote_style?: 0 | 1 | 2 | 3 | 4; }; [optionName: string]: any; }; ``` Default: `{}` Terser minify [options](https://github.com/terser/terser#minify-options). **webpack.config.js** ```js module.exports = { optimization: { minimize: true, minimizer: [ new TerserPlugin({ terserOptions: { compress: { drop_console: true, }, }, }), ], }, }; ``` ### `extractComments` Type: ```ts type extractComments = | boolean | "all" | "some" | RegExp | (( astNode: any, comment: { value: string; type: "comment1" | "comment2" | "comment3" | "comment4"; pos: number; line