This commit is contained in:
gcch 2025-09-28 11:01:58 +02:00
commit 32cf1563f7
13 changed files with 651 additions and 0 deletions

12
index.ts Normal file
View file

@ -0,0 +1,12 @@
import * as json from "./dprint.json" with { type: "json" };
/**
* Retourne la configuration `dprint` sous forme de texte formatée.
*
* @returns La configuration `dprint`.
*/
export const imprimeConfigurationDprint = (): string => JSON.stringify(json, null, 2);
if (import.meta.main) {
imprimeConfigurationDprint();
}