focalboard/webapp/webpack.dev.js
Michael Kochell 1d87331391
Introduce checkbox property type (#439)
* introduce checkbox property type

* treat false as empty string

* Fixed lint issues

* Fixed webapp tests:

Co-authored-by: Harshil Sharma <harshilsharma63@gmail.com>
2021-06-02 15:53:52 +05:30

25 lines
572 B
JavaScript

// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
const merge = require('webpack-merge');
const makeCommonConfig = require('./webpack.common.js');
const commonConfig = makeCommonConfig();
const config = merge.merge(commonConfig, {
mode: 'development',
devtool: 'inline-source-map',
optimization: {
minimize: false,
},
});
module.exports = [
merge.merge(config, {
devtool: 'source-map',
output: {
devtoolNamespace: 'focalboard',
},
}),
];