2.0.1 • Published 3 years ago

webpack-typescript-config-dump-plugin v2.0.1

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

Webpack plugin Dump Typescript Config into file system

A webpack plugin to dump compiled typescript config into file system. Is useful in case you have resolve aliases formed dynamically and want your IDE to be able to handle them.

For webpack config file you can use webpack-config-dump-plugin

MIT License

Installation

npm i webpack-typescript-config-dump-plugin --save-dev

Usage

Javascript module

const {
  TypescriptConfigDumpPlugin,
} = require("webpack-typescript-config-dump-plugin");

// webpack config
{
  plugins: [new TypescriptConfigDumpPlugin(options)];
}

Typescript module

import { TypescriptConfigDumpPlugin } from "webpack-typescript-config-dump-plugin";

// webpack config
{
  plugins: [new TypescriptConfigDumpPlugin(options)];
}

Options and defaults

OptionTypeRequiredDefaultDescription
outputPathstringno./Path to store config dump
namestringnowebpack.config.dumpDump filename

Changes

  • Version 2 In version 2 the plugin has been rewritten using Typescript.
    BREAKING: Now it needs to be imported as ES module. Check the information above for details.
2.0.1

3 years ago

2.0.0

3 years ago

1.1.4

4 years ago

1.1.2

6 years ago

1.1.1

6 years ago

1.1.0

6 years ago