rollup-plugin-fork-ts-checker
TypeScript icon, indicating that this package has built-in type declarations

0.0.6 • Public • Published

rollup-plugin-fork-ts-checker

The project is currently in alpha phase.

fork-ts-checker-webpack-plugin is a great Webpack plugin that saves time from waiting for type checking. This repo heavily relies on fork-ts-checker-webpack-plugin, core logic of type checking is directly imported from it, with a adapation for Rollup.

npm CI npm

Usage

Install with NPM

npm i fork-ts-checker-webpack-plugin -D

or with Yarn

yarn add fork-ts-checker-webpack-plugin -D

The original idea for this plugin was to work with rollup-plugin-typescript2. It also could work with any none type checking TypeScript compile tool.

Here's a simple Rollup config example work with rpt2:

const rpt2 = require('rollup-plugin-typescript2')
const ftc = require('rollup-plugin-fork-ts-checker').default
 
export default {
  input: 'src/index.ts',
  plugins: [
    ftc({
      // Plugin options, mostly same as fork-ts-checker-webpack-plugin.
      // See https://github.com/TypeStrong/fork-ts-checker-webpack-plugin#options
      // Some options can't be supported. See Caveat section for detail.
    }),
    rpt2({
      // Disable type checking of compiler, leave it to ftc.
      check: false
    })
  ],
  output: {
    file: 'bundle.js',
    format: 'cjs'
  }
}

Caveat

Most options are completely same as fork-ts-checker-webpack-plugin. But some functionality can not be supported.

  • Webpack related configurations (e.g. ts-loader, happypack).
  • vue (could be supported, still WIP).

License

MIT

Package Sidebar

Install

npm i rollup-plugin-fork-ts-checker

Weekly Downloads

47

Version

0.0.6

License

MIT

Unpacked Size

136 kB

Total Files

34

Last publish

Collaborators

  • fi3ework