João Dias

Results 3 comments of João Dias

Where are you importing `app` from? For AGS v3, It should be something like this: ```ts import App from "ags/gtk3/app"; // gtk3, since you want to use Astal3 ``` In...

> Thank you for your very detailed comment You're welcome!! > but the issue is (and i forgot to clarify that on the original issue) that i'm initializing a new...

Try adding `"include"` in the `tsconfig.json`. It should look like this: ```json { "compilerOptions": { ... }, "include": [ "./@girs/**/*.d.ts" ] } ```