-
One of our repositories was set up to use aliased file imports via the tsconfig.json file:
```
{
"compilerOptions": {
"paths": {
"@alias/*": ["./src/*"]
}
…
}
```
The f…
-
As seen here:
![bug-with-help](https://github.com/user-attachments/assets/b8d74eb8-dc4e-4878-b44e-ef26661c28bd)
The correct output should go like this:
```
$ tlp2-bin
Usage for storing: --s…
-
for `type Alias = Vec;`, equating `Alias` with `Vec` may succeed:
- `normalizes-to(Alias, Vec) -> Vec`
- `equate(Vec, Vec)` ok via structural equality fast-path
This would cause the occurs check …
-
### What is the type of issue?
Documentation is missing, Documentation is confusing
### What is the issue?
I've seen to multiple people on discord who were lost on why `Eden` was not working. I fig…
-
the generated code doesn't fully resolve paths specified in the `tsconfig.json`
-
The following code demonstrates the issue
```scss
/* ./src/styles/shared.scss */
.btn {
font: inherit;
}
```
```tsx
// ./src/elements/buttons/button.tsx
import shared from "@/styles/shared.…
-
This issue must reduce multiply `../../` in import paths.
Solution: we can create path aliases.
Links:
- https://webpack.js.org/configuration/resolve/
- https://dev.to/mmcshinsky/webpack-alia…
Fybex updated
4 months ago
-
When using [Workspaces](https://docs.deno.com/runtime/fundamentals/workspaces/), paths are not resolvable even if this plugin is used.
## Workaround
This can be prevented by setting an alias for…
-
Trying to use a shared tailwind config in an integrated Nx monorepo. The module resolution is all done with typescript path aliasing rather than package manager workspace module resolution. The shared…
-
### Duplicates
- [X] I have searched the existing issues
### Latest version
- [X] I have tested the latest version
### Current behavior 😯
When I test a component that imports another component or…