fp-ts-fs
v1.0.1
Published
A neat little tool that helps you make webpack configs with typescript typings.
Downloads
3
Readme
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