Alex

Results 5 comments of Alex

Any update on this? It seems like I can use dirty as a workaround, but still the issue exists. Initially ```isValid === true``` and ```isValidating === false```. Sometimes on new...

> This works for my setup: > > ``` > > ``` Works good. However, I guess top level await was added only in node 14.x?

As a workaround for now, I ended up with the following: ``` cypress.config.ts import { nxComponentTestingPreset } from '@nx/next/plugins/component-testing'; import { defineConfig } from 'cypress'; export default defineConfig({ component: nxComponentTestingPreset(__filename)...

~UPD: it seems to fix the problem during runtime, but not during build time.~ ~When building the app, it gives~ ``` Property 'className' does not exist on type 'ColumnMeta'. ```...

So, there was an nx lib called `table`, there I had a file called `tanstack-table.d.ts`. Like this ``` table/ -- src/ ---- types/ ------ tanstack-table.d.ts ``` So for that lib...