cli-progress未显示在typescript nodejs 16上。我做错了什么?
代码
import cliProgress from "cli-progress";
export const UpdateTags = (games:any[]) => {
const bar1 = new cliProgress.SingleBar({}, cliProgress.Presets.shades_classic);
bar1.start(games.length, 0);
games.forEach((game, idx) => {
game.tag = "game " + idx;
bar1.update(idx);
});
bar1.stop();
};
package.json
"dependencies": {
"cli-progress": "^3.11.1",
},
"devDependencies": {
"@types/cli-progress": "^3.11.0",
},
1条答案
按热度按时间xqnpmsa81#
我也遇到了同样的问题。尝试以下操作: