To make it build on Windows I had to relax the linebreak handling in eslint and prettier. `.eslint.json` Add rule: ``` "rules": { "linebreak-style": "off" } ``` Create a `.prettierrc` file containing: ``` { "endOfLine": "auto" } ``` Cool lib!