Initial commit

This commit is contained in:
Misode
2020-05-23 21:14:34 +02:00
commit 135b229265
8 changed files with 86 additions and 0 deletions

15
webpack.config.js Normal file
View File

@@ -0,0 +1,15 @@
module.exports = {
entry: './src/app/app.ts',
output: {
path: __dirname + '/public',
filename: 'build/bundle.js'
},
resolve: {
extensions: ['.ts', '.js']
},
module: {
rules: [
{ test: /\.ts$/, loader: 'ts-loader' }
]
}
}