web
web copied to clipboard
Built files have '__wds-outside-root__' added to the name even though they are compiled and in the same source tree
When trying to get this working for my typescript/jsx project, compiled dependencies are given the wrong url address. Removing the 'wds-outside-root' address shows the correct file.
The wrong import in the test, gotten from the console.
If you correct the import, you get the compiled file.
Repro:
- Unzip the repro
-
npm install
-
npm test --watch
-
d
to open the browser in bugging mode - Notice the
testUtils.tsx
file returns a 404. - If you remove
__wds-outside-root__
the file exists and is compiled.
Expected: This should just work.