After running `wca analyze \"src/**/*.js\" --outFile custom-elements.json` The result path is e.g.: `"./src\\Component.js"` This seems to be due to this line [here](https://github.com/runem/web-component-analyzer/blob/master/src/transformers/json/json-transformer.ts#L55): ```typescript import { relative } from "path"; ... const path = fileName != null && config.cwd != null ? `./${relative(config.cwd, fileName)}` : undefined; ``` Changing it to this appears to fix it: ```typescript import { relative, sep, posix } from "path"; ... const path = fileName != null && config.cwd != null ? `./${relative(config.cwd, fileName).replaceAll(sep, posix.sep)}` : undefined; ```