2026-04-06

- eslint OK
- import OK
- jsdoc OK
- node OK
- oxc OK
- promise OK
- typescript OK
- unicorn en cours
This commit is contained in:
gcch 2026-04-03 23:57:57 +02:00
commit 2971fd7c5c
23 changed files with 3462 additions and 2091 deletions

View file

@ -1,4 +1,6 @@
import { configAstro } from "@gcch/configuration-eslint";
import { defineConfig } from "eslint/config";
export default defineConfig([...configAstro]);
const config = defineConfig([...configAstro]);
export default config;

View file

@ -1,3 +1,3 @@
import config from "../index";
import config from "../index.ts";
export default config;

View file

@ -1,13 +1,16 @@
import type { UserConfig } from "tsdown";
import { defineConfig } from "tsdown";
const config: UserConfig = defineConfig({
checks: { circularDependency: true },
clean: true,
dts: { oxc: true, parallel: true },
entry: ["../index.ts"],
minify: false,
outDir: "../dist",
platform: "node",
publint: true,
sourcemap: false,
target: "esnext",
treeshake: true,