Files
docx-js/webpack.config.js

26 lines
421 B
JavaScript
Raw Normal View History

2017-12-22 16:49:25 +00:00
const path = require('path');
module.exports = {
entry: './src/index.ts',
output: {
path: path.resolve('build'),
filename: 'index.js'
2017-12-22 16:49:25 +00:00
},
resolve: {
extensions: ['.tsx', '.ts', '.js']
2017-12-22 16:49:25 +00:00
},
module: {
rules: [
{
test: /\.ts$/,
loaders: ["awesome-typescript-loader"],
2017-12-22 16:49:25 +00:00
}
],
2017-12-22 16:49:25 +00:00
},
target: 'node'
2017-12-22 16:49:25 +00:00
};