feature: generate pdf from actor

This commit is contained in:
Matthieu CAILLEAUX
2021-10-16 23:58:31 +02:00
parent 1babf13dae
commit f96372b236
18 changed files with 1826 additions and 14 deletions

24
webpack.config.js Normal file
View File

@@ -0,0 +1,24 @@
const path = require('path');
module.exports = {
entry: './src/main.ts',
devtool: 'inline-source-map',
module: {
rules: [
{
test: /\.tsx?$/,
use: 'ts-loader',
exclude: /node_modules/,
},
],
},
resolve: {
extensions: ['.tsx', '.ts', '.js'],
},
output: {
publicPath: '',
filename: 'main.js',
path: path.resolve(__dirname, 'dist'),
},
};