const path = require("path"); const environment = process.env.NODE_ENV || "development"; const isCi = typeof process.env.CI !== "undefined"; const minify = isCi; const compatibility = isCi; const HappyPack = require("happypack"); const webpack = require("webpack"); const ForkTsCheckerWebpackPlugin = require("fork-ts-checker-webpack-plugin"); const HtmlWebpackPlugin = require("html-webpack-plugin"); const { BundleAnalyzerPlugin } = require("webpack-bundle-analyzer"); const UglifyJsPlugin = require("uglifyjs-webpack-plugin"); const WriteFilePlugin = require("write-file-webpack-plugin"); const PreloadWebpackPlugin = require("preload-webpack-plugin"); const MiniCssExtractPlugin = require("mini-css-extract-plugin"); const root = __dirname; const nodeFills = path.join(root, "packages", "node-browser", "src"); const vscodeFills = path.join(root, "packages", "vscode", "src", "fill"); module.exports = { context: root, devtool: "eval", entry: "./packages/app/src/index.ts", mode: isCi ? "production" : "development", output: { chunkFilename: "[name]-[hash:6].bundle.js", path: path.join(root, "dist"), filename: "[hash:6].bundle.js", }, module: { rules: [{ test: /\.(js)/, exclude: /test/, }, { test: /\.(node|txt|d\.ts|test.ts|perf.data.js|jxs)/, use: [{ loader: "ignore-loader", }], }, { use: [{ loader: "happypack/loader?id=ts", }], test: /(^.?|\.[^d]|[^.]d|[^.][^d])\.tsx?$/, }, { exclude: /test/, test: /\.s?css$/, // This is required otherwise it'll fail to resolve CSS in common. include: root, use: [{ loader: MiniCssExtractPlugin.loader, }, { loader: "css-loader", }, { loader: "sass-loader", }], }, { test: /\.(svg|png|ttf|woff|eot)$/, use: [{ loader: "file-loader", }], }, { test: /\.wasm$/, type: "javascript/auto", }], noParse: /\.test\.(j|t)sx?/, }, resolve: { alias: { "native-keymap": path.join(vscodeFills, "native-keymap.ts"), "node-pty": path.join(vscodeFills, "node-pty.ts"), "gc-signals": path.join(nodeFills, "empty.ts"), "selenium-webdriver": path.join(nodeFills, "empty.ts"), "vscode": path.join(nodeFills, "empty.ts"), "vscode-fsevents": path.join(nodeFills, "empty.ts"), "vsda": path.join(nodeFills, "empty.ts"), "windows-foreground-love": path.join(nodeFills, "empty.ts"), "windows-mutex": path.join(nodeFills, "empty.ts"), "windows-process-tree": path.join(nodeFills, "empty.ts"), "crypto": "crypto-browserify", "http": "http-browserify", "os": "os-browserify", "util": path.join(root, "node_modules", "util"), "child_process": path.join(nodeFills, "child_process.ts"), "fs": path.join(nodeFills, "fs.ts"), "net": path.join(nodeFills, "net.ts"), "electron": path.join(root, "packages", "electron-browser", "src", "electron.ts"), "@coder": path.join(root, "packages"), "vs": path.join(root, "lib", "vscode", "src", "vs"), }, extensions: [".js", ".jsx", ".ts", ".tsx", ".json", ".css"], mainFiles: [ "index", "src/index", ], }, resolveLoader: { alias: { "vs/css": path.join(vscodeFills, "css.js"), }, modules: [ path.join(root, "node_modules"), ], }, devServer: { hot: true, port: 3000, stats: { all: false, // Fallback for options not defined. errors: true, warnings: true, }, }, plugins: [ new HtmlWebpackPlugin({ template: "packages/app/src/index.html", }), new HappyPack({ id: "ts", threads: 2, loaders: [{ path: "ts-loader", query: { happyPackMode: true, }, }], }), // new BundleAnalyzerPlugin(), new WriteFilePlugin({ exitOnErrors: false, }), new PreloadWebpackPlugin({ rel: "preload", as: "script", }), new webpack.DefinePlugin({ "process.env.NODE_ENV": `"${environment}"`, }), new MiniCssExtractPlugin({ filename: "[name].css", chunkFilename: "[id].css", }), // minify ? new UglifyJsPlugin({ // cache: true, // parallel: true, // sourceMap: false, // }) : undefined, // new ForkTsCheckerWebpackPlugin({ // checkSyntacticErrors: true, // tsconfig: path.join(root, "./src/tsconfig.json"), // }), ], target: "web", stats: { all: false, // Fallback for options not defined. errors: true, warnings: true, }, };