Dominik Bułaj
Dominik Bułaj
Also confirmed. In `tsconfig.json` I have: `"declaration": false` and in `rollup.config.js` I got ``` typescript({ compilerOptions: { declaration: true, declarationDir: './types' } }), ``` When rollup runs declaration file(s) are...
Any news here?
Guys, I found solution. We need to import `defineConfig` from `vitest` In my case, just changing import did the trick (I use `vite.config.ts`) ```diff - import { defineConfig } from...
Hi, I had same issue. I followed @louggl solution and I'm able to emulate (serve) functions locally. But since my ID has colon in name I see troubles deploying it...