I've recently added vite-plugin-checker into our project, it works fine during development, but it leads to an infinite freeze during link an external lib:
yarn link @fleet/shared && yarn add @fleet/shared && vite optimize --force
I use the simple configuration:
checker({
typescript: true,
}),
When I set typescript to false, it works fine. But I can't find a way, how I can turn the checker off during the link process
Reproduction
1) Add an external lib to the project;
2) Add vite-plugin-checker with the simple typescript configuration;
3) Try to link the external lib;
4) See the freeze.
Expected behavior
1) Add an external lib to the project;
2) Add vite-plugin-checker with the simple typescript configuration;
3) Try to link the external lib;
4) See the end of the link process
Describe the bug
I've recently added vite-plugin-checker into our project, it works fine during development, but it leads to an infinite freeze during link an external lib:
yarn link @fleet/shared && yarn add @fleet/shared && vite optimize --force
I use the simple configuration:
When I set typescript to false, it works fine. But I can't find a way, how I can turn the checker off during the link process
Reproduction
1) Add an external lib to the project; 2) Add
vite-plugin-checker
with the simple typescript configuration; 3) Try to link the external lib; 4) See the freeze.Expected behavior
1) Add an external lib to the project; 2) Add
vite-plugin-checker
with the simple typescript configuration; 3) Try to link the external lib; 4) See the end of the link processSystem Info
Additional context
No response
Validations