From 2f4df8e0d5f8061d707ffe2a9c0b64f14721854f Mon Sep 17 00:00:00 2001 From: Anton Shchekota Date: Wed, 19 May 2021 14:46:32 +0300 Subject: [PATCH] fix: add TS and TSX as default extensions fixed #1377 --- src/config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config.js b/src/config.js index 910f566c1..d59ef14fa 100644 --- a/src/config.js +++ b/src/config.js @@ -2,7 +2,7 @@ const defaultConfig = { // package.json ignored and don't get project infromation 'no-package': false, // Extenstions which by dafault are parse - parseExtension: ['mjs', 'js', 'jsx', 'es5', 'es6', 'vue'] + parseExtension: ['mjs', 'js', 'jsx', 'es5', 'es6', 'vue', 'ts', 'tsx'] }; function normalaze(config, global) {