create-react-app-esbuild
create-react-app-esbuild copied to clipboard
Use esbuild in your create-react-app for faster compilation, development and tests
I want to migrate my craco webpack configuration to craco esbuild but I need to know if exists any replacement in the esbuild world for the ["webpack-bundle-tracker" package](https://github.com/django-webpack/webpack-bundle-tracker)
Basically, the new JSX transformer is not supported (it is not required to import React from react anymore) So we have this error: ReferenceError: React is not defined Reference: https://reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html...
It is currently not possible to install craco-esbuild. Steps to reproduce: 1. Using node v 16.6.2 H:\nvm list * 16.6.2 (Currently using 64-bit executable) 16.6.0 13.5.0 12.13.0 10.14.1 8.8.0 2....
When I run `craco test "--watchAll=false"`, I get the following error in one of my tests: ``` :69:11: ERROR: The JSX syntax extension is not currently enabled ``` Here's how...
Running this config with `esbuild-loader` would not be the same as compiling with esbuild as shown on the readme on the project's GitHub - https://github.com/privatenumber/esbuild-loader#why-am-i-not-getting-a-100x-speed-improvement-as-advertised Adding this would clarify on...
Just a feature suggestion. Instead of dropping babel-loader, it can be used together with esbuild-loader: ```js // define esbuild-loader const esbuildLoader = { // These could be used for the...
Thanks for this great plugin! Is there a way to have it resolve aliases via the Typescript `paths` setting in `tsconfig.json`? Out of the box, code that compiles fine with...
I first tested in a much more evolved but still CRA based with TypeScript project. Didn't seem to be using esbuild. The `yarn build` still took ~10s. Start a fresh...
Hi I've only started playing with craco and this plugin tonight, so I may well be missing something pretty obvious. We have a large CRA typescript project which I'm experimenting...
Compilation of the project works fine but as soon as try to run tests it fails with an odd syntax error that is not present when the `craco-esbuild` is disabled...