tessl install tessl/npm-coffeescript@2.7.0A programming language that compiles into JavaScript, offering more concise and readable syntax while maintaining full JavaScript compatibility.
Agent Success
Agent success rate when using this tile
77%
Improvement
Agent success rate improvement when using this tile compared to baseline
1.01x
Baseline
Agent success rate without this tile
76%
A utility that compiles CoffeeScript files from the filesystem with proper error handling and format detection.
@generates
/**
* Compiles a CoffeeScript file from the filesystem.
*
* @param {string} filepath - The path to the CoffeeScript file to compile.
* @param {Object} [options] - Compilation options (e.g., bare mode, source maps).
* @returns {string} The compiled JavaScript code.
* @throws {Error} Throws an error if the file cannot be read or contains syntax errors.
*/
function compileFile(filepath, options) {
// IMPLEMENTATION HERE
}
module.exports = {
compileFile
};Provides CoffeeScript compilation support.
@satisfied-by