FM

Results 3 comments of FM

For the uppercase you could do this: ```jsx val.toUpperCase() } }} /> ``` `A` convert alpha values to uppercase

You need to provide your own raw value resolver when using custom type: ```js value.replace(/[()\s-]/g, '') }} /> ```

I think you are missing the extensions in `webpack.resolve`. I'm using typescript and aliases work fine. Here's my config ``` // webpack.config.js resolve: { extensions: ['.ts'], alias: { '@app': path.resolve(__dirname,...