1.0.7 • Published 4 years ago

webpack-ts v1.0.7

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

Webpack TS

npm bundle size David Code Climate maintainability Code Climate coverage

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

editorIntegration

intelliSense

1.0.7

4 years ago

1.0.6

4 years ago

1.0.5

4 years ago

1.0.4

4 years ago

1.0.3

4 years ago

1.0.1

5 years ago