UNPKG

424 BJavaScriptView Raw
1module.exports = ({
2 baseUrl: '.',
3 name: 'lib/client/main',
4 out: '.bin/main.js',
5 optimize: 'none',
6 absolutise: true,
7 cjsTranslate: true,
8 paths: {
9 'async': 'async/lib/async',
10 'jquery': 'jquery/dist/jquery'
11 },
12 map: {
13 // Use no conflict jQuery.
14 '*': { 'jquery': 'lib/client/vendor/jquery' },
15 'lib/client/vendor/jquery': { 'jquery': 'jquery' }
16 }
17});
\No newline at end of file