UNPKG

types-pkg-json

Version:
26 lines (25 loc) 674 B
import { ESLintConfig } from "types-eslintrc"; import { PackageJSON } from "../"; export { YarnConfiguration, WorkspaceConfig, WorkspacePattern } from "./yarn"; export declare type TypeScriptConfiguration = { /** * Location of the bundled TypeScript declaration file. */ types?: string; /** * Location of the bundled TypeScript declaration file. Alias of `types`. */ typings?: string; }; export declare type ESLintConfiguration = { /** * Configuration settings for eslint. */ eslintConfig?: ESLintConfig; }; export declare type JSPMConfiguration = { /** * JSPM configuration. */ jspm?: PackageJSON; };