Commit c6a4b3d for jssip.net

commit c6a4b3d49ecee7ad397cf532d8232e0f410d139e
Author: José Luis Millán <jmillan@aliax.net>
Date:   Fri Apr 24 17:30:23 2026 +0200

    3.13.7

diff --git a/CHANGELOG.md b/CHANGELOG.md
index f0dd68b..06532c7 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,13 +2,17 @@

 ### NEXT

+### 3.13.7
+
+- Do not include test folder in lib/.
+
 ### 3.13.6

-- Dialog: Fix wrong CSEQ on ACK for re-INVITE (#966). Thans to @sabrineLayouni reporting.
+- Dialog: Fix wrong CSEQ on ACK for re-INVITE (#966). Thanks to @sabrineLayouni reporting.

 ### 3.13.5

-- ReferSubscriber: Fix authentication causing ID update (#961). Thans to @sabrineLayouni reporting.
+- ReferSubscriber: Fix authentication causing ID update (#961). Thanks to @sabrineLayouni reporting.
 - Fix: JsSIP.d.ts was missing in lib/.

 ### 3.13.4
diff --git a/eslint.config.mjs b/eslint.config.mjs
index e23db21..96fed9a 100644
--- a/eslint.config.mjs
+++ b/eslint.config.mjs
@@ -125,7 +125,7 @@ const config = tsEslint.config(
 		files: ['src/**/*.ts'],
 		languageOptions: {
 			parserOptions: {
-				project: 'tsconfig.json',
+				project: 'tsconfig.eslint.json',
 			},
 		},
 		rules: {
diff --git a/package-lock.json b/package-lock.json
index c9f40e1..8b4e7a3 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -1,12 +1,12 @@
 {
 	"name": "jssip",
-	"version": "3.13.5",
+	"version": "3.13.7",
 	"lockfileVersion": 3,
 	"requires": true,
 	"packages": {
 		"": {
 			"name": "jssip",
-			"version": "3.13.5",
+			"version": "3.13.7",
 			"license": "MIT",
 			"dependencies": {
 				"debug": "^4.3.1",
diff --git a/package.json b/package.json
index 17c1b30..c8fe9a7 100644
--- a/package.json
+++ b/package.json
@@ -2,7 +2,7 @@
 	"name": "jssip",
 	"title": "JsSIP",
 	"description": "The Javascript SIP library",
-	"version": "3.13.6",
+	"version": "3.13.7",
 	"homepage": "https://jssip.net",
 	"contributors": [
 		"José Luis Millán <jmillan@aliax.net> (https://github.com/jmillan)",
diff --git a/tsconfig.eslint.json b/tsconfig.eslint.json
new file mode 100644
index 0000000..98a6fa1
--- /dev/null
+++ b/tsconfig.eslint.json
@@ -0,0 +1,5 @@
+{
+	"extends": "./tsconfig.json",
+	"include": ["src"],
+	"exclude": [],
+}