Sam Van Campenhout
Sam Van Campenhout
@NullVoxPopuli Is creating a PR in the [helpers repo](https://github.com/ember-cli/ember-cli-blueprint-test-helpers) and getting that merged / released a blocker for this one, or can we merge with the patch? That repo doesn't...
Going to close this since it's outdated and we can just use `--typescript` where needed.
Just to clarify, we're using this addon in most of our Embroidered projects and it works just fine. So ember-cli-sass shouldn't be a blocker for the Embroider migration. The error...
We're also running into this when importing it as a type for our store service declarations. There are differences between the `ember-data/store` and `@ember-data/store` types (since one is preconfigured) so...
@tsmalls93 I don't think the prettier setup formats .yaml files at the moment?
I believe this is an ember-auto-import issue. The error is thrown [here](https://github.com/ef4/ember-auto-import/blob/210fb56138ac92912c58bb8ef99f13a4844b73c6/packages/ember-auto-import/ts/package.ts#L332). dependencySatisfies does return `false` correctly but I think ember-auto-import simply analyzes all imports and doesn't check for optional...
@taiwo2 In the styleguide: https://github.com/ember-learn/ember-styleguide
I think this is an actual bug in Embroider (vite), so this change would only work around it. It's a valid exports config according to these docs: https://nodejs.org/api/packages.html#package-entry-points
> Can you try upgrading babel-plugin-ember-template-compilation? AFAIK, `babel-plugin-ember-template-compilation` isn't used by the type removal feature in ember-cli. `pnpm why babel-plugin-ember-template-compilation` doesn't show it either.
It's babel-remove-types that adds the `export {}`; This is the code that's passed into it, after the template tag is replaced with a placeholder. ([Babel playground link](https://babeljs.io/repl#?browsers=defaults%2C%20not%20ie%2011%2C%20not%20ie_mob%2011&build=&builtIns=false&corejs=3.21&spec=false&loose=false&code_lz=JYWwDg9gTgLgBDAnmApnA3nAKgeQMJwC-cAZlBCHAOQACKIARilAPQDGFkAdilzCzHpgANgENBAWghdhiKgG4AUIpQAPSLDjA-zEqLZoAYhAgBlYAHMu4gK5Q06RXDgsW2ABZpRUCzZC8YAGc4fQMwQQATOAZEBE84DnBpAKc4AEEfQIAuDEIlZ1d0rliGYQg2AGtgxGAUYQiUKJi4tETuFOcAITLK7IxU5wa9G2EYHIBtAF1UvNTCrHi6-gCECDgAd3dgNnc4AAMAOiPxGChgBhtBQL2tYNEwEVqo7RaEzmS-BCExQVSAUWEyz4OS4I2ESlmigA-lCsH8ALIABQAMmk4bC0gBxKEABhhcEC4mAgRItWCuDwAB5jGZLNYYHYUAA-eRAA&debug=false&forceAllTransforms=false&modules=false&shippedProposals=false&evaluate=false&fileSize=true&timeTravel=false&sourceType=module&lineWrap=true&presets=typescript&prettier=true&targets=&version=7.26.10&externalPlugins=&assumptions=%7B%7D)) ```ts import type...