Add more preprocessors
Is your feature request related to a problem? Please describe. People often use tools like typescript, scss, less, markdown
Describe the solution you'd like Add some of this functionality to src/utils/processors.js. Right now, only jsx is supported via babel. It would be nice to extend to use other common preprocessors. Ideally the preprocessor util interface would take in a raw string, output a transpiled string or throw an error if invalid syntax. processors.js already contains some skeleton code for additional preprocessors.
Additional context Must be conscious of the dependencies this would bring in and their footprints. In my mind, Typescript would be the next most important preprocessor to support. Then maybe scss, but I don't really find it imperative.