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
Hello,
I'm trying to setup esbuild-node-tsx in a monorepo.
esbuild-node-tsx
So instead of using nodemon, I'd like to simply pass options to esbuild since it supports passing a watch flag to build.
build
// etsc.watch-config.js module.exports = { // Supports all esbuild.build options esbuild: { incremental: true, watch: { onRebuild(error, result) { if (error) console.error('watch build failed:', error); else console.error('watch build succeeded:', result); }, }, }, postbuild: async () => { console.log('postbuild'); }, };
in package.json, I have the script "dev": "etsc --config=../../etsc.watch-config.js"
"dev": "etsc --config=../../etsc.watch-config.js"
But it seems to not watch anything at all when running yarn dev. FYI buildOptions is a console.log, I've added in the main function.
yarn dev
buildOptions
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hello,
I'm trying to setup
esbuild-node-tsx
in a monorepo.So instead of using nodemon, I'd like to simply pass options to esbuild since it supports passing a watch flag to
build
.in package.json, I have the script
"dev": "etsc --config=../../etsc.watch-config.js"
But it seems to not watch anything at all when running
yarn dev
. FYIbuildOptions
is a console.log, I've added in the main function.The text was updated successfully, but these errors were encountered: