运行 mocha 测试时出现此错误。
Error [ERR_UNSUPPORTED_DIR_IMPORT]: Directory import '/node_modules/ts-node/register' is not supported resolving ES modules imported from /node_modules/mocha/lib/esm-utils.js
以下是 mocha 配置文件。我正在使用 Node v12。摩卡 v9.0.1,
mocharc.json
{
"extension": ["ts"],
"spec": "test/lib/**/*.test.ts",
"require": "ts-node/register",
"delay": true,
"bail": true,
"watch": true
}