summaryrefslogtreecommitdiffstats
path: root/webpack.config.js
diff options
context:
space:
mode:
Diffstat (limited to 'webpack.config.js')
-rw-r--r--webpack.config.js8
1 files changed, 3 insertions, 5 deletions
diff --git a/webpack.config.js b/webpack.config.js
index 1979538..3bbb7ba 100644
--- a/webpack.config.js
+++ b/webpack.config.js
@@ -6,11 +6,6 @@ module.exports = {
path: './build',
filename: 'bundle.js'
},
- plugins: [
- new HtmlWebpackPlugin({
- title: 'RPGedit'
- })
- ],
module: {
loaders: [
{ test: /\.css$/, loader: 'style-loader!css-loader' },
@@ -19,5 +14,8 @@ module.exports = {
},
resolve: {
extensions: ['', '.ts']
+ },
+ ts: {
+ compilerOptions: { noEmit: false }
}
};