@glint/environment-ember-template-imports
Version:
A Glint environment to support ember-template-imports projects
19 lines (15 loc) • 478 B
Markdown
# `/environment-ember-template-imports`
This package contains the information necessary for glint to typecheck an `ember-template-imports` project.
Note that this environment should be installed alongside `/environment-ember-loose` and both should be activated
in your Glint configuration in `tsconfig.json`:
```javascript
{
"compilerOptions": { /* ... */ },
"glint": {
"environment": [
"ember-loose",
"ember-template-imports"
]
}
}
```