I have been reading various blogs discussing the use of SystemJS and SASS transpiling, but most of the examples I come across involve pre-processing SASS files before importing them into JavaScript code. However, I am interested in being able to directly import SASS files into my JavaScript files and have my SystemJS loader transpile them into CSS dynamically during development. When it comes to production, I intend to bundle everything into a single static file. Is this scenario feasible? If so, what is the usual approach?
For context, I am working with Angular2 and Typescript.
Thank you for your help.