We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi,
Is there a way to pass custom ignore switch to chokidar?
In my case, source and destination directory is same. Ex: swc ./src -d ./src -w --only **/*.ts
swc ./src -d ./src -w --only **/*.ts
With this, .js files get generated in ./src/. But this is causing loop as chokidar detected file change in the src dir.
.js
./src/
I see chokidar.watch() is only supporting dot files as of now. Can you please confirm if swc-cli support any custom ignore pattern for chokidar?
chokidar.watch()
Thanks
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi,
Is there a way to pass custom ignore switch to chokidar?
In my case, source and destination directory is same. Ex:
swc ./src -d ./src -w --only **/*.ts
With this,
.js
files get generated in./src/
. But this is causing loop as chokidar detected file change in the src dir.I see
chokidar.watch()
is only supporting dot files as of now. Can you please confirm if swc-cli support any custom ignore pattern for chokidar?Thanks
The text was updated successfully, but these errors were encountered: