remove unused

This commit is contained in:
ろむねこ 2024-07-18 12:33:03 +09:00
parent 653e5cbcb8
commit 480ac85703
Signed by: Fujimatsu
GPG Key ID: FA1F39A1BA37D168

View File

@ -1,29 +0,0 @@
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;