jannikac

Results 6 comments of jannikac

Ran into this issue as well. The solution was to use an absolute path for msiexec.exe. So instead of `msiexec /i OpenSSH-Win64-v8.9.1.0.msi ADDLOCAL=Client` use something like `msiexec /i C:\Users\...\OpenSSH-Win64-v8.9.1.0.msi ADDLOCAL=Client`

Just added generation of `d.ts` files into the rollup config. `npm run build` should now create the declarations under `dist/types`. I also added a types field into `package.json` so npm...

Sure, this is what the Documentation looks like with `@alias` and `ICAL.` removed (links from other functions that return a `Component` or use a `Component` work correctly aswell): ![grafik](https://github.com/kewisch/ical.js/assets/21014142/991a47c2-0f66-4226-8faa-d5624dc23e14) If...

Just to clarify, this the current changes of my fork look like from a library consumer perspective: Usage in typescript (js would be identical in this example I believe): ```ts...

This issue still exists and also happens for me when the option `tsconfig` is set to `false` which should be allowed as per documentation on npm. ![grafik](https://github.com/rollup/plugins/assets/21014142/6ee622cd-834d-481d-a25f-f1003455a128) ```ts typescript({tsconfig: false})...

Hey just wanted to post a update on the state of types and a comment for my commits made recently: ## Current state of type generation ### What works -...