Skip to content

Ember

Use @golar/ember to add Ember support to Golar.

Terminal window
npm i -D @golar/ember

Add the plugin import to golar.config.ts:

golar.config.ts
import { defineConfig } from 'golar/unstable'
import '@golar/ember'
export default defineConfig({})

Once the plugin is registered, run Golar in the default mode:

Terminal window
npx golar

This command loads golar.config.ts, runs linting, and then type-checks your project files.

If you need declaration emit for Ember files, use tsc mode:

Terminal window
npx golar tsc --declaration --emitDeclarationOnly

This emits .d.ts files for Ember components.

Golar’s Ember support is built on the official @glint/ember-tsc package.