This example shows how ts-for-gir v4 can be used to generate and use TypeScript types for GJS.
Another option is to install the types via NPM, but this example shows how to create the types yourself so that the library version of the created types matches your local ones
- Install the dependencies using
npm install - Run
npm run generateto generate the TypeScript types - Rerun
npm installto register the new types - Run
npm run buildto build the TypeScript code - Run
npm run startto start the code with GJS (alternatively rungjs -m main.js)
The tsconfig.json file is configured to use the ESNext target and lib setting, which allows for the use of ES module syntax and async/await. The types array is set to ["@girs/gjs", "@girs/gio-2.0", "@girs/adw-1", "@girs/gtk-4.0"] to include the generated types.
The main.ts file uses the generated types to create a simple Hello World GJS Gtk/Adwaita application.
The package.json file is configured to add the generated types to the workspace, So that the types can be found by the TypeScript compiler:
"workspaces": [
"@types/*"
]In addition, 3 NPM scripts are included:
generate: This script runsts-for-girCLI to generate the types for theAdw-1package.build: This script runstscto build the TypeScript code.start: This script runsgjsto start the code with GJS.
- ts-for-gir-local-esbuild-example - Almost identical example, but uses
esbuildto build the TypeScript code
