Azure Monitor: build monaco with webpack WIP

This commit is contained in:
Alexander Zobnin
2019-01-21 21:22:53 +03:00
parent 44c07eb2e9
commit 00de497663
10 changed files with 289 additions and 116 deletions
+2 -1
View File
@@ -2,6 +2,7 @@
const merge = require('webpack-merge');
const common = require('./webpack.common.js');
const monaco = require('./webpack.monaco.js');
const path = require('path');
const webpack = require('webpack');
const HtmlWebpackPlugin = require("html-webpack-plugin");
@@ -9,7 +10,7 @@ const CleanWebpackPlugin = require('clean-webpack-plugin');
const MiniCssExtractPlugin = require("mini-css-extract-plugin");
// const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin;
module.exports = merge(common, {
module.exports = merge(common, monaco, {
devtool: "cheap-module-source-map",
mode: 'development',