esbuild-node-tsc
esbuild-node-tsc copied to clipboard
Build your Typescript Node.js projects using blazing fast esbuild
## Why ? `[email protected]` is now vulnerable with a high severity because of its dependence to `globby@9` (which is finally dependent on `glob-parent@5` which contains the vulnerability). Moving to `cpy`...
**tsconfig.json:** { "compilerOptions": { ... "paths": { "@/*": ["./src/*"], } }, } **ests.config.js:** const tsPaths = require("esbuild-ts-paths"); module.exports = { esbuild: { plugins: [tsPaths()], }, }; Error: Cannot find module...
Hi, does your plugin address this issue? https://github.com/evanw/esbuild/issues/2298#issuecomment-1146378367 Thanks.
Here's my config ```js module.exports = { entryPoints: ['./lib/**/*.ts'], outDir: './dist', esbuild: { minify: false, target: 'es2015', plugins: [esbuildPluginTsc()], }, }; ``` And here's the command telling me that it...
Hello, thank you for a nice library, after migration from npm to pnpm I got the following error: `'etsc' is not recognized as an internal or external command, operable program...
``` const esbuildPluginTsc = require('esbuild-plugin-tsc'); module.exports = { outDir: './dist', esbuild: { minify: false, format: "esm", target: 'es2015', plugins: [esbuildPluginTsc()] }, assets: { baseDir: 'src', outDir: './dist', filePatterns: ['**/*.json'] }...
Would it be possible to extend this to have incremental builds using nodemon? Our full dev build using etsc takes about 15s and if incremental could improve it somehow, I'd...
Hello, I would love to use this package as ts-eager seems to have technical flaws, though it seems that this package fails to manage adjacent packages in the monorepo. Have...
I think we could have an example in this repo of how to use the vscode debugger with the source maps for correctly debugging the variables....
like `const esnc = require('esbuild-node-tsc/register');await esnc(config)`