From f5cc2ef57120924a3012511a193c6471b50efcfd Mon Sep 17 00:00:00 2001 From: Pawel Zelawski Date: Thu, 10 Apr 2025 16:27:24 +0200 Subject: chore: bump version to 1.0.0 for stable release - Update package.json version from 0.1.0 to 1.0.0 - This change reflects that the library is now production-ready - The version number follows semantic versioning conventions - Future changes will be treated as major version updates - Add ESLint configuration for TypeScript - Create separate TypeScript config for examples - Ignore dist directory in linting - Set TypeScript no-explicit-any rule to warning level --- examples/tsconfig.json | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 examples/tsconfig.json (limited to 'examples/tsconfig.json') diff --git a/examples/tsconfig.json b/examples/tsconfig.json new file mode 100644 index 0000000..9788494 --- /dev/null +++ b/examples/tsconfig.json @@ -0,0 +1,9 @@ +{ + "extends": "../tsconfig.json", + "compilerOptions": { + "rootDir": "..", + "outDir": "../dist" + }, + "include": ["./**/*.ts"], + "references": [{ "path": "../" }] +} \ No newline at end of file -- cgit v1.2.3