54 lines
1.2 KiB
TypeScript
54 lines
1.2 KiB
TypeScript
import webpack from 'webpack';
|
|
import TsconfigPathsPlugins from 'tsconfig-paths-webpack-plugin';
|
|
import webpackPaths from './webpack.paths';
|
|
import { dependencies as externals } from '../../release/app/package.json';
|
|
|
|
const configuration: webpack.Configuration = {
|
|
externals: [...Object.keys(externals || {})],
|
|
|
|
stats: 'errors-only',
|
|
|
|
module: {
|
|
rules: [
|
|
{
|
|
test: /\.[jt]sx?$/,
|
|
exclude: /node_modules/,
|
|
use: {
|
|
loader: 'ts-loader',
|
|
options: {
|
|
transpileOnly: true,
|
|
compilerOptions: {
|
|
module: 'nodenext',
|
|
moduleResolution: 'nodenext',
|
|
},
|
|
},
|
|
},
|
|
},
|
|
],
|
|
},
|
|
|
|
output: {
|
|
path: webpackPaths.srcPath,
|
|
library: { type: 'commonjs2' },
|
|
},
|
|
|
|
resolve: {
|
|
extensions: ['.js', '.jsx', '.json', '.ts', '.tsx'],
|
|
modules: [webpackPaths.srcPath, 'node_modules'],
|
|
plugins: [new TsconfigPathsPlugins()],
|
|
|
|
// Новые настройки
|
|
extensionAlias: {
|
|
'.js': ['.js', '.mjs'],
|
|
},
|
|
fullySpecified: false,
|
|
alias: {
|
|
'undici/lib/core/util': 'undici/lib/core/util.js',
|
|
},
|
|
},
|
|
|
|
plugins: [new webpack.EnvironmentPlugin({ NODE_ENV: 'production' })],
|
|
};
|
|
|
|
export default configuration;
|