Hank Majoros
Hank Majoros
running `ember install ember-cli-typescript` will automatically add `ember-cli-typescript` as a dependency in your top level package.json, but in a monorepo you may need to additionally add `ember-cli-typescript` into the top...
### Please paste the output of `ember -v` here ``` ember-cli: 3.28.0 node: 14.15.1 os: darwin x64 ``` ### Please paste the output of `tsc -v` here ``` Version 4.4.2...
building off of [this PR](https://github.com/DefinitelyTyped/DefinitelyTyped/pull/61533) to add public types for Ember's `Owner` class, we now can type the input to `setModifierManager` with the correct `Owner` type instead of relying on...
I've been running the codemod on all of my project's rendering tests, ala anything that has ``` import { setupRenderingTest } from 'ember-qunit'; ``` We've actually had pretty good success...
https://github.com/checkupjs/checkup/blob/8f88c8ba8bdc03bdb417fec1bfbcaff9de0ac5de/packages/checkup-plugin-ember-octane/src/utils/task-configs.ts#L12 any reason this chunk isn't using the `no-object-extend` rule defined here? https://github.com/scalvert/eslint-plugin-ember-es6-class this is what our team used to track our native class migration
failing tests for #1835 to demonstrate the types of fixer improvements we should be making.
per the w3c spec, when a focused element receives a keyDown event with the key `Enter` or ` `, browsers will construct a native `click` event on that focused element....
context: we have a mono-repo with different workspaces, some TS some JS. top level tsconfig looks like: ``` { "extends": "./tsconfig.base.json", "references": [ { "path": "./packages/package-a" }, { "path": "./packages/package-b"...
`tsc` allows you to run `tsc --build custom-tsconfig.json`, to essentially use the `--project` flag & `tsc --build` flag simultaneously. should `glint --build` also support this functionality? I am assuming yes...
JS comments are being parsed by the plugin, and if the plugin finds invalid syntax, it throws errors. This is common in our codebase when people write example usages of...