qrcode-generator-ts
Version:
Typescript QR Code generator based on https://github.com/kazuhikoarase/qrcode-generator
47 lines (41 loc) • 1.03 kB
JavaScript
var webpack = require('webpack'),
path = require('path'),
yargs = require('yargs');
var libraryName = 'qrcodegeneratorts',
plugins = [],
outputFile;
if (yargs.argv.p) {
plugins.push(new webpack.optimize.UglifyJsPlugin({ minimize: true }));
outputFile = libraryName + '.min.js';
} else {
outputFile = libraryName + '.js';
}
var config = {
entry: [
__dirname + '/ts/index.ts'
],
devtool: 'source-map',
output: {
path: path.join(__dirname, '/dist'),
filename: outputFile,
library: libraryName,
libraryTarget: 'umd',
umdNamedDefine: true
},
module: {
loaders: [
{ test: /\.tsx?$/, loader: 'ts', exclude: /node_modules/ }
]
},
resolve: {
root: path.resolve('./ts'),
extensions: ['', '.js', '.ts', '.jsx', '.tsx']
},
plugins: plugins,
// Individual Plugin Options
tslint: {
emitErrors: true,
failOnHint: true
}
};
module.exports = config;