UNPKG

666 BTypeScriptView Raw
1import { RuleSetRule } from 'webpack';
2import { Options, Rules } from './types';
3export declare const minimumSupportedBrowsers: {
4 chrome: string;
5 edge: string;
6 firefox: string;
7 ios: string;
8 opera: string;
9 safari: string;
10 samsung: string;
11};
12export declare const unneededBabelPlugins: string[];
13export declare function checkTypescript(rulesOptions: Rules, srcFolder: string): Promise<boolean>;
14export declare function checkReact(rulesOptions: Rules, srcFolder: string): Promise<boolean>;
15export declare function normalizeIncludePath(path: string): string;
16export declare function setupRules(options: Options): Promise<Array<RuleSetRule>>;