vite-esbuild-typescript-checker
Version:
* Speeds up [TypeScript](https://github.com/Microsoft/TypeScript) type checking * Supports [Vue Single File Component](https://vuejs.org/v2/guide/single-file-components.html) * Displays nice error messages with the [code frame](https://babeljs.io/docs/en/
7 lines (6 loc) • 373 B
TypeScript
import { PluginOption } from 'vite';
import { Plugin } from 'esbuild';
import { TypescriptWorkerOptions } from './types';
export declare function RollupPlugin(config?: TypescriptWorkerOptions): PluginOption;
export declare function VitePlugin(config?: TypescriptWorkerOptions): PluginOption;
export declare const EsbuildPlugin: (config: TypescriptWorkerOptions) => Plugin;