Tommy
Tommy
How do you remove those assets from being emitted by Vite? Even with those plugins, the svg are still emitted as external files
What was the final solution to this problem?
So I was able to get it fixed by using an absolute path in `includePaths`, but it's far from being a great solution. Can we have someone looking into it?...
It's not really a solution though. I was simply able to make it work by using an absolute path in my tsconfig file. For example: ``` "includePaths": ["/Users/xxx/projects/yyy/src"] ```
@mrmckeb Was the info I provided enough for you to be able to test this? I have sass files which uses "absolute" paths so I can avoid having a relative...
If you already use typescript, you can drop any babel plugins for these resolutions and only use the typescript system.
Not saying to stop using babel if you use TS. But you can use the alias/root system in TS alone without relying on this plugin anymore. At least that's the...
Oh I see. I thought babel would read tsconfig through the plugin to know how to transpile, but they don't?
I've never seen really `from '.'`, but I've seen `from './'` in many projects, so if that's an issue, I definitely agree we need to fix it :) Thank you...
Remove the symlink and let the plugin handle the path? So the config would be to have A set to ProjectX/src/A instead.