import * as moduleofthree from "three";
declare global {
var THREE: typeof moduleofthree;
}
var THREE = moduleofthree;
import scene from "@scene/scene";
console.log(scene);
我在main.ts入口文件中引入了three这个模块。在scene中不引入直接使用THREE这个变量。但是运行的时候报错了,但是在vscode中没报错。请问要怎样去修改才能去正常使用