UNPKG

solid-panes

Version:

Solid-compatible Panes: applets and views for the mashlib and databrowser

44 lines (42 loc) 989 B
const path = require('path') const webpack = require('webpack') const ForkTsCheckerWebpackPlugin = require('fork-ts-checker-webpack-plugin') module.exports = (env, args) => ({ entry: './src/index.ts', output: { filename: args.mode === 'production' ? 'main.min.js' : 'main.js', path: path.resolve(__dirname, 'dist'), libraryTarget: 'commonjs2' }, resolve: { extensions: ['.mjs', '.js', '.ts'] }, module: { rules: [ { test: /\.(mjs|js|ts)$/, exclude: /(node_modules|bower_components)/, use: { loader: 'babel-loader' } }, { test: /\.ttl$/i, use: { loader: 'raw-loader' } } ] }, plugins: [ new webpack.DefinePlugin({ // Prevent solid-auth-tls (used by solid-ui) from running Node code: 'global.IS_BROWSER': JSON.stringify(true) }), new ForkTsCheckerWebpackPlugin() ], node: { fs: 'empty' }, devtool: 'source-map' })