luy19
luy19
fix #60
> I encounter this issue when I was using PNPM but need `npm i --package-lock-only` to produce a package-lock.json. I also ran into the same issue, it seems that `--package-lock-only`...
yes, solid-start contains a lot of ts errors, maybe the developer didn't use tsc to compile the code. 🤦♂️
Good news, I found a workaround: https://github.com/microsoft/TypeScript/issues/38538#issuecomment-892555422
@nirtamir2 here is my workaround, I hope this helps. package.json ``` { "scripts": { "postinstall": "node add-ts-nocheck.cjs", "check": "tsc --noEmit" } } ``` add-ts-nocheck.cjs ``` const fs = require("fs"); const...
This is a known issue, you can solve it by remove the `webp` option. ``` options: { mozjpeg: { progressive: true, quality: 65 }, optipng: { enabled: false }, pngquant:...