1.0.3 • Published 4 years ago

configure-webpack v1.0.3

Weekly downloads
2
License
MIT
Repository
github
Last release
4 years ago

configureWebpack

configureWebpack is a Webpack configuration helper utility that automatically generates common Webpack configurations for NPM modules, including image, SASS, and TypeScript support.

Use

// webpack.config.js
const configureWebpack = require('configure-webpack');
module.exports = configureWebpack({ sass: true, typescript: true });

Options

css

If you are using vanilla CSS files (not SASS) in your package, set the css property to true.

sass

If you are using SASS files in your package, set the sass property to true.

typescript

If you are using TypeScript in your package, set the typescript property to true.

TypeScript

To add images to your TypeScript project, create the following files:

// src/types/images.d.ts
declare module '*.gif' {
  const _: string;
  export default _;
}

declare module '*.jpg' {
  const _: string;
  export default _;
}

declare module '*.png' {
  const _: string;
  export default _;
}
1.0.3

4 years ago

1.0.2

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago