UNPKG

@eslint-types/import

Version:
21 lines (19 loc) 439 B
export interface Schema0 { commonjs?: boolean; amd?: boolean; esmodule?: boolean; /** * @minItems 1 */ ignore?: [string, ...string[]]; maxDepth?: number | '∞'; /** * ignore external modules */ ignoreExternal?: boolean; /** * Allow cyclic dependency if there is at least one dynamic import in the chain */ allowUnsafeDynamicCyclicDependency?: boolean; } export type NoCycleRuleOptions = [Schema0?];