Daniel Långfors

Results 5 comments of Daniel Långfors

Node simply wont import the esm file: ``` import linaria from '@linaria/esbuild/esm/index.js'; > To load an ES module, set "type": "module" in the package.json or use the .mjs extension. ```...

Thought I ran into the same issue, but after looking at your example I realized that you simply ship code to the browser without removing the linaria function calls first....

Searched for a possibility to do this as well. What I found and tried: - Passing `?schema={shemaName}` to the connection string does not have any effect. - Setting the `search_path`...

Hi, we are experiencing the same issue, and the workaround is not working for us due to having a more complex DOM structure. After some research it seems like there...

For reference, [this comment](https://github.com/microsoft/TypeScript/issues/47663#issuecomment-1519138189) have a comprehensive list of solutions / workarounds. I opted for option 8, until the issue is resolved upstream. ```ts // global.d.ts declare module 'lexical' {}...