Skip to content

Commit

Permalink
fix(config): check extension before ts-node register (#3651)
Browse files Browse the repository at this point in the history
Call require('ts-node').register() after checking configFilePath has `.ts` extension

Fixes #3329
  • Loading branch information
xel23 committed Feb 12, 2021
1 parent 7ab86be commit 474f4e1
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion lib/config.js
Expand Up @@ -27,7 +27,7 @@ try {
} catch (e) {}

try {
require('ts-node').register()
require('ts-node')
TYPE_SCRIPT_AVAILABLE = true
} catch (e) {}

Expand Down Expand Up @@ -374,6 +374,9 @@ function parseConfig (configFilePath, cliOptions, parseOptions) {
let configModule
if (configFilePath) {
try {
if (path.extname(configFilePath) === '.ts' && TYPE_SCRIPT_AVAILABLE) {
require('ts-node').register()
}
configModule = require(configFilePath)
if (typeof configModule === 'object' && typeof configModule.default !== 'undefined') {
configModule = configModule.default
Expand Down

0 comments on commit 474f4e1

Please sign in to comment.