UNPKG

webpack-genius

Version:

**For chinese developers:** you'd better add taobao mirror before everything start. Or you may fail to install. ```bash yarn config set registry http://registry.npm.taobao.org ```

13 lines (12 loc) 342 B
import { RuleHandle } from './RuleHandle'; import { RuleSetCondition, RuleSetLoader } from 'webpack'; interface Json5Options { 'json5-loader': { esModule: boolean; }; } export declare class Json5 extends RuleHandle<Json5Options> { protected test(): RuleSetCondition; protected loaders(): RuleSetLoader[]; } export {};