/** * GitWand — Profil "tsconfig.json" (et tsconfig.*.json) * * Match : tout fichier nommé tsconfig.json ou tsconfig..json * (ex: tsconfig.build.json, tsconfig.app.json) à n'importe quelle profondeur * dans le repo. * * Stratégies : * - /compilerOptions → merge-keys (objet de flags : on merge clé-par-clé) * - /compilerOptions/lib → set (tableau de strings, ordre indifférent) * - /compilerOptions/types → set * - /compilerOptions/typeRoots → set * - /include → set (globs, ordre indifférent) * - /exclude → set * - /references → set par "path" (objets {path: "..."} avec identité = path) * - /files → set * - défaut → merge-keys */ import type { FormatProfile } from "../types.js"; export declare const tsconfigProfile: FormatProfile; //# sourceMappingURL=tsconfig.d.ts.map