summaryrefslogtreecommitdiffstats
path: root/webpack.config.js
diff options
context:
space:
mode:
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']
}
};