"Fossies" - the Fresh Open Source Software Archive

Member "cli-1.1260.0/webpack.prod.ts" (4 Dec 2023, 263 Bytes) of package /linux/misc/snyk-cli-1.1260.0.tar.gz:


As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) TypeScript source code syntax highlighting (style: standard) with prefixed line numbers and code folding option. Alternatively you can here view or download the uninterpreted source code file.

    1 import { merge } from 'webpack-merge';
    2 import common from './webpack.common';
    3 import { Configuration } from 'webpack';
    4 
    5 export default merge(common as Configuration, {
    6   mode: 'production',
    7   devtool: 'source-map',
    8   optimization: {
    9     minimize: false,
   10   },
   11 });