after fixing all the dependency issues, im left with the import issues. although the project builds and runs, there are eslint errors in visual studio code, see attached picture.

I’ve seen this https://geta12.com/#/docs/2025.06/ext0/client/client-documentation-bundle%23_type_only_exports_are_now_marked_as_such
but there are 2 issues with that:
- the codemod runs but doesn’t change any file
- from the small code snippet I provided in the explanation, I cannot understand the specifics of how to fix the imports manually for a12 imports.
Hi, the error shown here is caused by a mismatch between typescript and eslint.
Things to check:
- Which typescript version are you using? ES2024 as a
lib setting was introduced with 5.7
- Are you using the corrent eslint dependencies for your typescript version? (see here)
The linked documentation chapter is not relevant here, because it only fixes “type-only” exports (which you do not use based on your code snippet).

after following the instructions in the page you recommended: bitbucket/projects/A12/repos/devtools/browse/eslint-config
im left with 3 files of eslint config, 1 is for sure to delete, but im not sure how to merge the 2 left, if its even necessary.
we are using prettier in the project, is that also included in the provided a12 eslint config we import in the mis file?
eslint.config.js.txt (2.6 KB)
ok, had to update some more dependencies and remove some deprecated ones, then recreate the whole eslint.config.js - eslint has a migration guide, but its not full of good enough examples, if you are using playwright and prettier plugins, please take a look in the specific plugin pages to see how to integrate it correctly.