Update ESLint configuration, package.json, and README; improve formatting and versioning consistency. Adjust TypeScript configuration to disallow importing extensions and refine test scripts for better readability.

This commit is contained in:
2025-11-23 01:15:28 -05:00
parent 3deadc6e75
commit f007573ade
15 changed files with 218 additions and 164 deletions

View File

@@ -6,8 +6,8 @@
"moduleResolution": "bundler",
"esModuleInterop": true,
"allowImportingTsExtensions": true,
"allowArbitraryExtensions": true,
"allowImportingTsExtensions": false,
"allowArbitraryExtensions": false,
"isolatedModules": true,
"declaration": true,
"emitDeclarationOnly": true,
@@ -22,5 +22,5 @@
"noPropertyAccessFromIndexSignature": false
},
"include": ["src"],
"exclude": ["dist", "test"]
"exclude": ["dist", "test", "src/examples"]
}