1.0.3 • Published 4 years ago

typescript-plugin-unassert v1.0.3

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

typescript-plugin-unassert

CircleCI

Motivation

Assertion Functions is available from TypeScript 3.7, but assertion functions are called and processed always, even in production codes.

This plugin eliminates all of assert and assertIsDefined calls, that are introduced at the official page.

Getting Started

npm install --save-dev typescript-plugin-unassert ts-loader
# or
yarn add --dev typescript-plugin-unassert ts-loader

Write following lines in your webpack.config.json.

const unassertTransformer = require('typescript-plugin-unassert')

// snip

module.exports = {
  // snip
  module: {
    rules: [
      {
        test: /\.tsx?$/,
        loader: 'ts-loader',
        options: {
          getCustomTransformers: () => ({
            before: [unassertTransformer],
          }),
        },
        exclude: /node_modules/,
      },
    ],
  },
  // snip
}

Make sure to specify something except for "CommonJS" for the "module" property in tsconfig.json if you need tree shaking.

See example dir which is minimum usage.

1.0.3

4 years ago

1.0.2

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago