webpack.config.ts

This commit is contained in:
rca 2024-07-16 03:08:19 +09:00
parent b9e36b441f
commit 61aa453716

29
webpack.config.ts Normal file
View File

@ -0,0 +1,29 @@
import * as path from 'path';
import * as webpack from 'webpack';
import webpackNodeExternals = require('webpack-node-externals');
const config: webpack.Configuration = {
entry: './src/index.ts',
mode: 'development',
target: 'node',
externals: [webpackNodeExternals()],
devtool: 'inline-source-map',
module: {
rules: [
{
test: /\.tsx?$/,
use: 'ts-loader',
exclude: /node_modules/,
},
],
},
resolve: {
extensions: ['.tsx', '.ts', '.js'],
},
output: {
filename: 'index.js',
path: path.resolve(__dirname, 'lambda'),
library: 'index',
libraryTarget: 'commonjs2',
},
};
export default config;