1.0.1 • Published 5 years ago

fp-ts-fs v1.0.1

Weekly downloads
3
License
MIT
Repository
github
Last release
5 years ago

Webpack TS

A neat little tool that helps you make webpack configs with typescript typings.

Usage

yarn add -D webpack-ts

Example

// webpack.config.ts
import { makeConfig } from 'webpack-ts';
import { join } from 'path'

const config = makeConfig({
  entry: "dist/index.js",
  output: {
    path: join(__dirname, "dist"),
    filename: "[name].js"
  }
})

module.exports = config

Editor integration