mirror of
https://github.com/misode/misode.github.io.git
synced 2026-04-23 15:17:09 +00:00
Initial commit
This commit is contained in:
15
webpack.config.js
Normal file
15
webpack.config.js
Normal 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' }
|
||||
]
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user