tessl install tessl/npm-babel--preset-stage-0@7.8.0Deprecated Babel preset for stage 0 plugins that provides migration guidelines to explicit plugin configurations
Agent Success
Agent success rate when using this tile
80%
Improvement
Agent success rate improvement when using this tile compared to baseline
1.21x
Baseline
Agent success rate without this tile
66%
Create a minimal compiler wrapper that accepts selected experimental language syntax without performing any transforms, returning the original code and parse artifacts for downstream tooling.
const result = value |> double |> (x => x + 1); returns the identical code string. @testdo-expressions succeeds and exposes an AST object with the expected top-level type marker. @testpipeline-operator in the allowlist fails with a clear error that names the missing feature. @testpipeline-operator, one with do-expressions) operate independently; enabling a feature in one does not make it available in the other. @test@generates
/**
* Creates a syntax-only compiler that accepts selected experimental language features and leaves code unchanged.
*
* @param {string[]} features - Identifiers for syntax features to enable (e.g., "pipeline-operator", "do-expressions").
* @returns {(source: string) => { code: string, ast: object, enabled: string[] }}
*/
export function createSyntaxOnlyCompiler(features);Provides parsing and code generation infrastructure. @satisfied-by
Enables parsing of experimental syntax without applying transforms. @satisfied-by