diff --git a/lib/converter.js b/lib/converter.js index 2c9b900..e653c37 100644 --- a/lib/converter.js +++ b/lib/converter.js @@ -23,7 +23,7 @@ exports.convert = function(logger, projectDir, options) { try { var coffeeContents = fs.readFileSync(filePath, { encoding: 'utf-8' }); - var jsContents = coffee.compile(coffeeContents, { bare: 'true' }); + var jsContents = coffee.compile(coffeeContents, { bare: 'true', inlineMap: 'true' }); } catch (e) { reject(new Error(filePath + ' CoffeeScript failed. Error: ' + e)); return;