This is an automated email from the ASF dual-hosted git repository.

randall pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-annotator.git

commit bd010e0498d8488f6f974508cb87a2ab7b7823db
Author: Randall Leeds <[email protected]>
AuthorDate: Mon Aug 3 18:59:20 2020 -0700

    Remove plain JavaScript from babel-register
    
    By default, babel-register does not compile anything in the node modules
    directory. Everything in the project is now TypeScript. Therefore, only
    TypeScript files need to be compiled.
---
 babel-register.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/babel-register.js b/babel-register.js
index 9aaa03e..ec45b5b 100644
--- a/babel-register.js
+++ b/babel-register.js
@@ -18,4 +18,4 @@
  * under the License.
  */
 
-require('@babel/register')({ extensions: ['.js', '.ts'] });
+require('@babel/register')({ extensions: ['.ts'] });

Reply via email to