/** * @file SubpathExports * @module pkg-types/SubpathExports */ import type { ExportsSubpath, Target } from '@flex-development/pkg-types' /** * Subpath exports map. * * @see {@linkcode ExportsSubpath} * @see {@linkcode Target} * @see https://nodejs.org/api/packages.html#subpath-exports */ interface SubpathExports { [subpath: string]: Target [subpath: Exclude]: Target '.'?: Target './package.json'?: Target } export type { SubpathExports as default }