This package has been deprecated

Author message:

This package is unmaintained and for reference only, please use the native tools instead

build-tools-webpack-typescript

1.3.0 • Public • Published

npm version

build-tools-webpack-typescript

Set of dependencies for running webpack with TypeScript.

Install

npm install -DE build-tools-webpack-typescript

Usage

In webpack.config.js:

const { rules, extensions } = require('build-tools-webpack-typescript');

module.exports = {
  module: {
    rules
  },
  resolve: {
    extensions
  }
}

or combined with other rules/extensions:

const { rules: tsRules, extensions: tsExtensions } = require('build-tools-webpack-typescript');

module.exports = {
  module: {
    rules: [
      ...tsRules,
      ... // other loaders
    ]
  },
  resolve: {
    extensions: [
      ...tsExtensions,
      ... // other extensios
    ]
  }
}

Links

Dependencies (1)

Dev Dependencies (0)

    Package Sidebar

    Install

    npm i build-tools-webpack-typescript

    Weekly Downloads

    10

    Version

    1.3.0

    License

    MIT

    Unpacked Size

    3.06 kB

    Total Files

    5

    Last publish

    Collaborators

    • adidas