UNPKG

288 BTypeScriptView Raw
1import { PackageJson } from 'read-pkg';
2import { BundlibOptions } from './bundlib-options';
3interface JSNextLegacyPkgJson extends PackageJson {
4 'jsnext:main'?: string;
5}
6export interface BundlibPkgJson extends JSNextLegacyPkgJson {
7 bundlib?: BundlibOptions;
8}
9export {};