1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- const path = require('path');
- const webpack = require('webpack');
- const babylonExternals = require('../Tools/WebpackPlugins/babylonExternals');
- const MiniCssExtractPlugin = require("mini-css-extract-plugin");
- const HardSourceWebpackPlugin = require('hard-source-webpack-plugin');
- module.exports = {
- context: path.resolve(__dirname, './src'),
- entry: {
- 'babylonjs-inspector': path.resolve(__dirname, './src/legacy/legacy.ts'),
- },
- output: {
- path: path.resolve(__dirname, '../dist/preview release/inspector'),
- filename: 'babylon.inspector.bundle.js',
- libraryTarget: 'umd',
- library: {
- root: "INSPECTOR",
- amd: "babylonjs-inspector",
- commonjs: "babylonjs-inspector"
- },
- umdNamedDefine: true
- },
- resolve: {
- extensions: [".js", '.ts', ".tsx"],
- alias: {
- "re-resizable$": path.resolve(__dirname, '../node_modules/re-resizable/lib/index.es5.js')
- }
- },
- externals: [babylonExternals()],
- devtool: "source-map",
- module: {
- rules: [{
- test: /\.tsx?$/,
- loader: 'awesome-typescript-loader',
- options: {
- configFileName: path.resolve(__dirname, './tsconfig.json'),
- declaration: false
- }
- },
- {
- test: /\.scss$/,
- use: [
- // fallback to style-loader in development
- process.env.NODE_ENV !== 'production' ? 'style-loader' : MiniCssExtractPlugin.loader,
- "css-loader",
- "sass-loader"
- ]
- },
- {
- test: /\.css$/,
- use: ['style-loader', 'css-loader']
- }]
- },
- mode: "production",
- performance: {
- hints: false
- },
- plugins: [
- new HardSourceWebpackPlugin(),
- new webpack.WatchIgnorePlugin([
- /\.js$/,
- /\.d\.ts$/
- ]),
- new MiniCssExtractPlugin({
- // Options similar to the same options in webpackOptions.output
- // both options are optional
- filename: "[name].css",
- chunkFilename: "[id].css"
- })
- ]
- }
|