summaryrefslogtreecommitdiffstats
path: root/webpack.config.js
diff options
context:
space:
mode:
authorMatthias Schiffer <mschiffer@universe-factory.net>2016-01-06 17:10:19 +0100
committerMatthias Schiffer <mschiffer@universe-factory.net>2016-01-06 17:27:45 +0100
commitc64ead08a36fccc36a42b3e74362aa423cfb62ed (patch)
tree5ada42f825b4ed0431f5c0426ab226aa0e7c2512 /webpack.config.js
parent4fa246628bd9e5911ae998162f0bdc724cc739d2 (diff)
downloadrpgedit-c64ead08a36fccc36a42b3e74362aa423cfb62ed.tar
rpgedit-c64ead08a36fccc36a42b3e74362aa423cfb62ed.zip
Replace all CoffeeScript code by TypeScript
Diffstat (limited to 'webpack.config.js')
-rw-r--r--webpack.config.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/webpack.config.js b/webpack.config.js
index d069bb6..1979538 100644
--- a/webpack.config.js
+++ b/webpack.config.js
@@ -1,7 +1,7 @@
var HtmlWebpackPlugin = require('html-webpack-plugin');
module.exports = {
- entry: './src/app.coffee',
+ entry: './src/app.ts',
output: {
path: './build',
filename: 'bundle.js'
@@ -14,10 +14,10 @@ module.exports = {
module: {
loaders: [
{ test: /\.css$/, loader: 'style-loader!css-loader' },
- { test: /\.coffee$/, loader: 'coffee-loader' }
+ { test: /\.ts$/, loader: 'ts-loader' }
]
},
resolve: {
- extensions: ['', '.js', '.json', '.coffee']
+ extensions: ['', '.ts']
}
};