UNPKG

ionic-orm-3

Version:

Data-mapper ORM for Ionic WebSQL and SQLite

24 lines (20 loc) 580 B
module.exports = function(grunt) { grunt.initConfig({ jshint: { files: ['Gruntfile.js', 'dist/**/*.js', 'src/**/*.js'], options: { esversion: 6, globals: { jQuery: true } } }, watch: { files: ['<%= jshint.files %>'], tasks: ['jshint'] } }); grunt.loadNpmTasks('grunt-contrib-jshint'); grunt.loadNpmTasks('grunt-contrib-watch'); grunt.registerTask('default', ['jshint']); };