mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
* added rollup-plugin-visualizer * corrected formatting * fixed errors found after test run * fixed error * fixed error * fixed errors * corrected package.json * corrected package according to review comment; added main author to package
14 lines
336 B
TypeScript
14 lines
336 B
TypeScript
import visualizer, { PluginVisualizerOptions } from 'rollup-plugin-visualizer';
|
|
|
|
visualizer(); // $ExpectType Plugin
|
|
const fullOptions: PluginVisualizerOptions = {
|
|
filename: 'filename',
|
|
title: 'title',
|
|
sourcemap: true,
|
|
open: true,
|
|
template: '',
|
|
bundlesRelative: true,
|
|
};
|
|
visualizer({});
|
|
visualizer(fullOptions);
|