UNPKG

@vlsergey/react-bootstrap-pagetable

Version:

Complex solution to work with pageable data, including sorting, filtering, actions, changing displayed columns, etc.

25 lines (22 loc) 508 B
/* eslint-disable */ const path = require( 'path' ); const ESLintPlugin = require('eslint-webpack-plugin'); const imported = require( '@vlsergey/js-config' ).karma; module.exports = function( config ) { imported(config); config.set( { files: [ 'test/**/*Test.ts*', ], webpack: { output: { path: path.resolve(__dirname, '../lib/'), }, plugins: [ new ESLintPlugin( { fix: true, } ), ], } } ); };