Socket
Socket
Sign inDemoInstall

@wessberg/rollup-plugin-ts

Package Overview
Dependencies
Maintainers
1
Versions
185
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@wessberg/rollup-plugin-ts

A Rollup plugin for Typescript that respects Browserslists


Version published
Weekly downloads
1.8K
increased by18.71%
Maintainers
1
Weekly downloads
 
Created
Source

Downloads per month Dependencies NPM Version Contributors MIT License Support on Patreon

@wessberg/rollup-plugin-ts

A Rollup plugin for Typescript that respects Browserslists

Description

This is a Rollup plugin that enables integration between Typescript and Rollup. In comparison with the official plugin, this one has several improvements:

  • Compiler diagnostics are correctly emitted and brought into the Rollup build lifecycle
  • Emit-less types are correctly handled
  • Generation of Definition files (.d.ts) are supported
  • A Browserslist can be provided instead of a target version of ECMAScript such that your code is transpiled in relation to the baseline of browsers defined in your Browserslist instead.

Install

NPM

$ npm install @wessberg/rollup-plugin-ts

Yarn

$ yarn add @wessberg/rollup-plugin-ts

Run once with NPX

$ npx @wessberg/rollup-plugin-ts

Usage

Using the plugin is dead-simple. Here's an example:

import tsPlugin from "@wessberg/rollup-plugin-ts";
export default {
  // The entry point of your app or library
  input: "src/index.ts",
  output: [
    /* ... */
  ],
  plugins: [
    tsPlugin({
      /* Plugin options */
    })
  ]
};

The options provided in your tsconfig.json will be seamlessly merged with those provided by Rollup.

Plugin options

  • tsconfig: The relative path from the current working directory to the Typescript config file to use. (Default: tsconfig.json).
  • root: The current working directory. (Default: process.cwd())
  • include: A filter for the files that should be passed through the plugin. (Default: []),
  • exclude: A filter for the files that should be excluded from being passed through the plugin. (Default: [])
  • browserslist: A Browserslist config that should be compiled against, rather than relying on the target provided in the tsconfig. Please see this section for more details. (Default: undefined)
  • babel: An object of supported configuration options to pass on to Babel (See this section for more details.) (Default: undefined)
  • parseExternalModules: If false, no external modules (e.g. those coming from node_modules) will be parsed by Typescript which may result in the unwanted preservation of exported types from other libraries in the compiled output. Please see this section for more details. (Default: false)
Babel options

These options will be passed on to Babel. Note that you MUST also include a browserslist to the plugin in order for Babel to handle transpilation.

  • additionalPresets: Code will additionally be run through the babel presets provided here. (Default: undefined)
  • additionalPlugins: Code will additionally be run through the babel plugins provided here. (Default: undefined)

And all of the options listed in the Code generator options section for Babel.

Declarations

Yup. Those work. If declaration is true in your tsconfig, Declaration files following the original folder structure will be generated inside the output directories.

Using Browserslists

If you want to let a Browserslist decide which transformations to apply to your code, rather than a simple ECMAScript target version, please know that the compilation phase will be two-fold:

  1. The Typescript compiler will compile with ESNext as the ECMAScript target version. This basically amounts to stripping away types as well as transforming Typescript specific run-time functionality such as enums and decorators.
  2. Babel will perform the remaining transpilation with respect to your browserslist through babel-preset-env, some baked-in plugins representing features that are in stage 3 in TC39, as well as any presets and/or plugins you provide. In order to do so, all you have to do is simply provide a browserslist in the options provided to the plugin. For example:
import tsPlugin from "@wessberg/rollup-plugin-ts";
export default {
  // ...
  plugins: [
    tsPlugin({
      // ...
      browserslist: ["last 2 versions"]
    })
  ]
};

Contributing

Do you want to contribute? Awesome! Please follow these recommendations.

Maintainers

FAQ

How are Typescript config options merged with the Rollup options?

The plugin attempts to make it as seamless as intuitive as possible. Whenever conflicts arise (which is almost exclusively related to output options), Rollup has the last word. For example, Rollup decides which output formats to compile for, and which folders to place the generated assets in, rather than Typescript, since this is configured in the Rollup output options.

Does this plugin work with Code Splitting?

Yes! And I would encourage you to use it.

Rollup complains about an import for something that isn't exported by a module

You may want to set the plugin option parseExternalModules to true. By default, this option is false, and as a consequence, no external modules (e.g. those coming from node_modules) will be parsed by Typescript which may result in the unwanted preservation of exported types from other libraries in the compiled output. For example, if you are depending on a type from a library like this:

// Inside a library: 'my-library'
export type Foo = {
  /* Something */
};

And you then re-export it:

// Inside your app or library
export {Foo} from "my-library";

Then it won't be stripped away by Typescript from the compiled Javascript Output if this option is false, This option is false by default since it may lead to significant improvements to compilation time, but please toggle this option 'on' if you run into issues like this.

Backers 🏅

Become a backer and get your name, logo, and link to your site listed here.

License 📄

MIT © Frederik Wessberg

Keywords

FAQs

Package last updated on 28 Sep 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc