- What compiler is this based on?
- Dart Sass's compilation rules. Variables, @mixins, @includes, @extends, nesting, and @use blocks all resolve as Dart Sass would resolve them.
- Does it support @use namespacing?
- Yes — `@use "./tokens" as t;` followed by `t.$color` resolves correctly. @forward is also supported.
- What about third-party imports?
- Only inline SCSS — external file imports (@use/@import from disk) aren't resolved because the tool runs in the browser. Inline everything you want resolved.
- Is the output source-map-friendly?
- No — this tool doesn't emit source maps. Use the Dart Sass CLI if you need them.