From 487a444075bd45a6faa92001d8ca527293bae552 Mon Sep 17 00:00:00 2001 From: Michael Mason Date: Wed, 25 Jan 2017 10:15:22 +0800 Subject: [PATCH] Fix typo in coffeescript compiler options. Fixes #8281 --- packages/coffeescript/plugin/compile-coffeescript.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/coffeescript/plugin/compile-coffeescript.js b/packages/coffeescript/plugin/compile-coffeescript.js index c51b51b58b..64f5017dd8 100644 --- a/packages/coffeescript/plugin/compile-coffeescript.js +++ b/packages/coffeescript/plugin/compile-coffeescript.js @@ -45,7 +45,7 @@ export class CoffeeCompiler extends CachingCompiler { // Return a source map. sourceMap: true, // Include the original source in the source map (sourcesContent field). - inline: true, + inlineMap: true, // This becomes the "file" field of the source map. generatedFile: '/' + this._outputFilePath(inputFile), // This becomes the "sources" field of the source map.