Update package version to 1.0.1, enhance ESLint configuration to ignore specific directories and files, and refine .gitignore to include dist directory.

This commit is contained in:
2025-11-22 21:26:31 -05:00
parent d0db8e5076
commit cf04e28c38
3 changed files with 22 additions and 4 deletions

View File

@@ -7,6 +7,9 @@ import css from "@eslint/css";
import { defineConfig } from "eslint/config";
export default defineConfig([
{
ignores: ["dist/**", "node_modules/**", "*.min.js"]
},
{ files: ["**/*.{js,mjs,cjs,ts,mts,cts}"], plugins: { js }, extends: ["js/recommended"], languageOptions: { globals: globals.node } },
tseslint.configs.recommended,
{ files: ["**/*.json"], plugins: { json }, language: "json/json", extends: ["json/recommended"] },