Commit 19ac576 for jssip.net

commit 19ac576d40c4d1bb6bc30570bef7b842c9e4483a
Author: José Luis Millán <jmillan@aliax.net>
Date:   Fri Jan 9 11:08:29 2026 +0100

    Remove babel leftovers

diff --git a/.babelrc b/.babelrc
deleted file mode 100644
index 5190050..0000000
--- a/.babelrc
+++ /dev/null
@@ -1,4 +0,0 @@
-{
-	"plugins": [],
-	"presets": [ "@babel/env" ]
-}
diff --git a/.npmignore b/.npmignore
index 666a872..114fea1 100644
--- a/.npmignore
+++ b/.npmignore
@@ -1,6 +1,3 @@
 /node_modules/
-/dist/
 /.gitignore
-/.babelrc
 /NO_GIT/
-
diff --git a/test/test-UA-no-WebRTC.js b/test/test-UA-no-WebRTC.js
index ba5884f..8739ae8 100644
--- a/test/test-UA-no-WebRTC.js
+++ b/test/test-UA-no-WebRTC.js
@@ -15,13 +15,7 @@ module.exports = {
         /* eslint no-unused-vars: 0*/
         const ua = new JsSIP.UA({ 'lalala': 'lololo' });
       },
-      // Error validation.
-      // NOTE: We should use JsSIP.Exceptions.ConfigurationError, but
-      // babel does not properly create Error subclasses.
-      function(error)
-      {
-        return error.name === 'CONFIGURATION_ERROR';
-      }
+      JsSIP.Exceptions.ConfigurationError
     );

     test.done();