Initial commit

This commit is contained in:
David Négrier 2020-04-03 14:56:21 +02:00
commit 26b8412f3c
13 changed files with 4146 additions and 0 deletions

31
front/webpack.config.js Normal file
View file

@ -0,0 +1,31 @@
const path = require('path');
const webpack = require('webpack');
module.exports = {
entry: './src/index.ts',
devtool: 'inline-source-map',
devServer: {
contentBase: './dist',
},
module: {
rules: [
{
test: /\.tsx?$/,
use: 'ts-loader',
exclude: /node_modules/,
},
],
},
resolve: {
extensions: [ '.tsx', '.ts', '.js' ],
},
output: {
filename: 'bundle.js',
path: path.resolve(__dirname, 'dist'),
},
plugins: [
new webpack.ProvidePlugin({
Phaser: 'phaser'
})
]
};