You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
An object containing configuration options may be passed into the plugin constructor `coffeeScriptPlugin`
42
+
An object containing configuration options may be passed into the plugin constructor `coffeeScriptPlugin`.
38
43
39
44
```js
40
45
coffeeScriptPlugin({
@@ -44,12 +49,13 @@ coffeeScriptPlugin({
44
49
45
50
The following options are available:
46
51
47
-
-`options.inlineMap`, `boolean`: if true, output the source map as a base64-encoded string in a comment at the bottom.
48
-
-`options.filename`, `string`: the filename to use for the source map. It can include a path (relative or absolute).
49
-
-`options.bare`, `boolean`: if true, output without the top-level function safety wrapper.
50
-
-`options.header`, `boolean`: if true, output the Generated by CoffeeScript header.
51
-
-`options.transpile`, `object`: if set, this must be an object with the options to pass to Babel. See [Transpilation](https://coffeescript.org/#transpilation).
52
-
-`options.ast`, `boolean`: if true, return an abstract syntax tree of the input CoffeeScript source code.
52
+
*`options.inlineMap`, `boolean`: if true, output the source map as a base64-encoded string in a comment at the bottom.
53
+
*`options.filename`, `string`: the filename to use for the source map. It can include a path (relative or absolute).
54
+
*`options.bare`, `boolean`: if true, output without the top-level function safety wrapper.
55
+
*`options.header`, `boolean`: if true, output the Generated by CoffeeScript header.
56
+
*`options.transpile`, `object`: if set, this must be an object with the options to pass to Babel. See [Transpilation](https://coffeescript.org/#transpilation).
57
+
*`options.ast`, `boolean`: if true, return an abstract syntax tree of the input CoffeeScript source code.
58
+
*`options.literate`, `boolean`: if true, parses the code as Literate CoffeeScript. This allows you to write CoffeeScript embedded in Markdown, where indented blocks are treated as executable code.
0 commit comments