kidshift-skills/webpack.config.ts
2024-07-16 04:52:22 +09:00

30 lines
674 B
TypeScript

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;