UNPKG

generator-base-reactjs

Version:

ReactJS basic skeleton for webapp development. With RequireJS, Bootstrap, Sass and templating with Jade. JSX compiled with Babel.

17 lines 274 B
'use strict'; module.exports = function(grunt) { grunt.config.set('babel', { options: { sourceMap: true, presets: ['es2015', 'react'] }, dist: { files: [{ expand: true, cwd: 'src/scripts/', dest: 'dist/js/', src: ['**/*.js'] }] } }); };