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
{name: 'watch',alias: 'w',multiple: 'true',description: "Recompile project much faster on file modifications."},
21
21
{name: 'ecma',description: "Specify ECMAScript target version: `es5` (default) or `es2015`."},
22
+
{name: 'verbose',type: Boolean,description: "Print more information about the compilation process."},
23
+
{name: 'symbols',multiple: true,description: "F# symbols for conditional compilation, like `DEBUG`."},
24
+
{name: 'dll',type: Boolean,description: "Generate a `.dll` assembly when creating libraries."},
22
25
{name: 'rollup',description: "Bundle files and dependencies with Rollup."},
23
26
{name: 'includeJs',type: Boolean,description: "Compile with Babel and copy to `outDir` relative imports (starting with '.')."},
24
-
{name: 'refs',multiple: true,description: "Alternative location for compiled JS files of referenced libraries (e.g. `Fable.Core=fable-core/umd`)."},
25
-
{name: 'symbols',multiple: true,description: "F# symbols for conditional compilation, like `DEBUG`."},
26
27
{name: 'plugins',multiple: true,description: "Paths to Fable plugins."},
27
28
{name: 'babelPlugins',multiple: true,description: "Additional Babel plugins (without `babel-plugin-` prefix). Must be installed in the project directory."},
29
+
{name: 'refs',multiple: true,description: "Alternative location for compiled JS files of referenced libraries."},
30
+
{name: 'coreLib',description: "Shortcut for `--refs Fable.Core={VALUE}`."},
28
31
{name: 'loose',type: Boolean,description: "Enable loose transformations for babel-preset-es2015 plugins."},
29
32
{name: 'babelrc',type: Boolean,description: "Use a `.babelrc` file for Babel configuration (invalidates other Babel related options)."},
30
-
{name: 'dll',type: Boolean,description: "Generate a `dll` assembly."},
0 commit comments