Jason Gerbes
Jason Gerbes
Just having some trouble with the following utility function: ```ts import { Thing, WithContext } from 'schema-dts'; export const addContextToSchema = (thing: T): WithContext => { return { '@context': 'https://schema.org',...
Any updates? I seem to be experiencing similar issues where importing types from this package stops intellisense from working and causes build timeouts
Hey @Eyas, I have just tested `[email protected]` and unfortunately the TypeScript compiler is still hanging
@Eyas: - NodeJS `v12.16.1` - TypeScript `v3.8.3` - Yeah, `tsc` hangs (seemingly) indefinitely
Both locally (Windows and macOS) and on our CI environment
My understanding is that the `package-lock.json` should not be removed. If some of the package versions in the package-lock are no longer available, you should run `npm i` and commit...
Hey, any updates on this feature request?
Would it be possible to extend this rule to also test exports?
@pacocoursey, you could alternatively add a `storage?: 'local' | 'session' | Storage;` prop to `ThemeProvider` to allow for local/session/custom storage implementations: ```tsx // localStorage (default) function MyApp({ Component, pageProps })...