jnachtigall
jnachtigall
I saw #35 but could not find any binary in `node_modules/.bin/` after installing `npm install --save-dev cors-anywhere` so I gave up. (Sorry for not sending a PR, no time these...
Starting with latest Firefox Nightly all legacy addons have been disabled and only WebExtensions are allowed. Hence this lovely plugin has also been disabled for me :-( Would be great...
@nishanthvijayan Did you have had time or will have time to look into it? Now Firefox Quantum is out and the HackerNews-Feed addon is the only one I still have...
Thanks for explaning, @boazpoolman So the `uid` matching is a feature of the config sync plugin? Because I cannot find any infos about it when reading through https://docs.strapi.io/developer-docs/latest/developer-resources/database-apis-reference/rest-api.html#endpoints Reading through...
Hi @boazpoolman thanks, I see. However, ` http://localhost:1337/api/ctform?formId=564&baseUrl=https://www.ctform.org/ctform` is not working (404) and then also after changing the `uid` to single `formId` is not working either (also 404). I also...
@qmhc Same error still with version 1.6.6 My `d.ts` file is `"types": "./dist-lib/ozgerde-vorgangsportal.d.ts",` and includes: ```ts export * from './mainWebComponent' ``` But there is no such file in `dist-lib` 
That's my `tsconfig.json`: ```json { "compilerOptions": { "target": "ESNext", "useDefineForClassFields": true, "lib": ["DOM", "DOM.Iterable", "ESNext"], "allowJs": false, "skipLibCheck": true, "esModuleInterop": false, "allowSyntheticDefaultImports": true, "strict": true, "forceConsistentCasingInFileNames": true, "module": "ESNext", "moduleResolution":...
Changing in `package.json` from ``` "types": "./dist-lib/ozgerde-vorgangsportal.d.ts", ``` to ``` "types": "./dist-lib/mainWebComponent.d.ts", ``` makes it work. Though now I have 2 files in the outputDir like this:  That is,...
Added these options, but I do not see any type errors in the output: ```bash $ npm run buildLib > [email protected] buildLib > tsc && vite --config vite-lib.config.ts build vite...
I've set up a repo at https://github.com/jnachtigall/vite-plugin-dts-126-bug and sent you an invitation. You can toggle `rollupTypes: true` to make it work / not work. Do `npm install` then `npm run...