react-app-rewire-typescript
react-app-rewire-typescript copied to clipboard
Add ts-loader to a react-app-rewired config.
getBabelLoader() throws an error
Otherwise it fails to work with `webpack 4` (provided via `react-scripts@next`).
I'm using latest create-react-app: ```config-overrides.js const rewireTypescript = require('react-app-rewire-typescript') module.exports = function override(config, env) { config = rewireTypescript(config, env) return config } ``` ```output C:\projects\my-app>npm start > [email protected] start C:\projects\my-app...
A helpful fix for if you'd like to use this with [Microsoft/TypeScript-React-Starter](https://github.com/Microsoft/TypeScript-React-Starter/)
I am confused of where should I put `outDir` in the configuration so will be great if you could add some basic setup that people could follow P.S: this is...
Thank you for creating this plugin, I successfully integrated it with `create-react-app` and `antd`. However when I'm running the tests, files with `*.test.ts` are not being detected. Here is my...