Hello everyone.
I'm using beta version 363, and I'm very pleased with TypeScript support. However, I'm having difficulties importing scripts with the "purpose: imports for events" in Construct 3.
In JavaScript, I simply create a file named "importsForEvents.js" with content similar to this:
import * as Boids from "./boids.js";
Using TypeScript, I've created the file "importsForEvents.ts" as follows:
import * as Boids from "./boids.js";
But when TypeScript compiles the code, it produces the "importsForEvents.js" file containing:
I can't figure out what I'm doing wrong.