David Ruisinger
David Ruisinger
@robertherber have you solved this without needing to install `apollo-server-plugin-base`? I'm getting running into the error... I could probably use `skipLibCheck` in my `tsconfig.json` but I think this should rather...
Intermediate fix: Create a `missing_apollo_types.d.ts` (name does not matter) file in your project with the following content: ``` declare module 'apollo-server-plugin-base' { interface ApolloServerPlugin { _: unknown } } ```
Unfortunately outlook/office365 and yahoo are not supporting recurring events but for google and ics this should work: https://github.com/AnandChowdhary/calendar-link/pull/487
Workaround: Create a `missing_apollo_types.d.ts` (name does not matter) file in your project with the following content: ``` declare module 'apollo-server-core' { interface PluginDefinition { _: unknown } } ```
> Hey all, are any of you seeing any errors in the status bar (at the bottom) related to language servers not installing? Do you see any status messages at...
> For those watching this issue, v0.122.1 seems to have fixed this in my projects Same for me. Working with the latest update 🙌🏻
The problem here is that the ionic CLI is using the documentRoot value from `ionic.project` file for upload. But this value is also used for the serve task. Since the...
Additional note: Also the CLI currently has the temp zip file hardcoded https://github.com/driftyco/ionic-app-lib/blob/master/lib/upload.js#L17
A possible solution would be to always re-build the project for live-reload and then serve from the www directory instead of src. I'll look into that when I have a...
I'm actually relying on the current behaviour so I would prefer if this won't change and instead added to the docs. As an example my schema looks something like this:...