kotarella1110/cordova-plugin-webpack

View on GitHub
src/options/plugin.ts

Summary

Maintainability
A
0 mins
Test Coverage
const options = {
  webpack: {
    alias: 'w',
    describe: 'Passed to the webpack-cli or webpack-dev-server options',
  },
  livereload: {
    type: 'boolean' as const,
    alias: 'l',
    describe: 'Enables LiveReload (HMR)',
    default: false,
  },
};

export default options;