Skip to content

Instantly share code, notes, and snippets.

View gimdongwoo's full-sized avatar

Dongwoo Gim gimdongwoo

View GitHub Profile
@gimdongwoo
gimdongwoo / webpack.config.js
Last active January 21, 2019 13:58
AWS Lambda
'use strict';
const path = require('path');
const webpack = require('webpack');
const config = {
devtool: 'source-map',
entry: './src/index.ts',
output: {
path: path.resolve('./target'),
filename: 'index.js',