-
Notifications
You must be signed in to change notification settings - Fork 790
Compiler Options
Here is list of compiler options that can be passed to the ClojureScript compiler.
- :output-to
- :output-dir
- :optimizations
- :main
- :asset-path
- :source-map
- :source-map-path
- :source-map-timestamp
- :cache-analysis
- :verbose
- :static-fns
- :warnings
- :elide-asserts
- :pretty-print
- :pseudo-names
- :print-input-delimiter
- :target
- :output-wrapper
- :externs
- :libs
- :foreign-libs
- :preamble
- :language-in and :language-out
- :closure-warnings
- :closure-defines
- :closure-extra-annotations
The path to the JavaScript file that will be output.
:output-to "resources/public/js/main.js"
Sets the output directory for temporary files used during compilation. Defaults to "out".
:output-dir "resources/public/js/out"
The optimization level. May be :none
, :whitespace
, :simple
, or
:advanced
. :none
is the recommended setting for development, while
:advanced
is the recommended setting for production, unless something
prevents it (incompatible external library, bug, etc.).
When the :main
option is not used, :none
requires manual code loading and hence a separate HTML from
the other options.
Defaults to :none
.
:optimizations :none
Specify an entry point namespace. When combined with optimizations :none
will cause the compiler to emit a single JavaScript file that will import goog/base.js,
the JavaScript file for the namespace, and emit the required goog.require
statement.
This permits leaving HTML markup identical between dev and production.
:main "foo.bar"
Also see :asset-path
.
When using :main
it is often necessary to control where the entry point
script attempts to load scripts from due to the configuration of the web server.
:asset-path "assets/js"
See https://github.com/clojure/clojurescript/wiki/Source-maps. Under optimizations :none
the valid values are true
and false
. Under all other optimization settings must specify a path to where the source map will be written.
Under :none
:
:source-map true
Otherwise:
:source-map "path/to/source/map.js.map"
Set the path to source files references in source maps to avoid further web server configuration.
:source-map-path "assets/js"
Add cache busting timestamps to source map urls. This is helpful for keeping source maps up to date when live reloading code.
:source-map-timestamp true
Experimental. Cache compiler analysis to disk. This enables faster cold build and REPL start up times.
:cache-analysis true
Experimental. Emit details and measurements from compiler activity.
:verbose true
Employs static dispatch to specific function arities in emitted JavaScript, as opposed to making use of the call
construct. Defaults to false except under advanced optimizations. Useful to have set to false at REPL development to facilitate function redefinition, and useful to set to true for release for performance.
This setting does not apply to the standard library, which is always compiled with :static-fns
implicitly set to true.
:static-fns true
This flag will turn on/off compiler warnings for references to undeclared vars, wrong function call arities, etc. Can be a boolean for enabling/disabling common warnings, or a map of specific warning keys with associated booleans. Defaults to true.
:warnings true
;; OR
:warnings {:fn-deprecated false} ;; suppress this warning
The following warnings are supported:
-
:preamble-missing
, missing preamble -
:undeclared-var
, undeclared var -
:undeclared-ns
, var references non-existent namespace -
:undeclared-ns-form
, namespace reference in ns form that does not exist -
:redef
, var redefinition -
:dynamic
, dynamic binding of non-dynamic var -
:fn-var
, var previously bound to fn changed to different type -
:fn-arity
, invalid invoke arity -
:fn-deprecated
, deprecated function usage -
:protocol-deprecated
, deprecated protocol usage -
:undeclared-protocol-symbol
, undeclared protocol referred -
:invalid-protocol-symbol
, invalid protocol symbol -
:multiple-variadic-overloads
, multiple variadic arities -
:variadic-max-arity
, arity greater than variadic arity -
:overload-arity
, duplicate arities -
:extending-base-js-type
, JavaScript base type extension -
:invoke-ctor
, type constructor invoked as function -
:invalid-arithmetic
, invalid arithmetic -
:protocol-invalid-method
, protocol method does not match declaration -
:protocol-duped-method
, duplicate protocol method implementation -
:protocol-multiple-impls
, protocol implemented multiple times
This flag will cause all (assert
x )
calls to be removed during compilation,
including implicit assert
s associated with :pre
and :post
conditions.
Useful for production. Default is always false even in advanced compilation.
Does NOT specify goog.asserts.ENABLE_ASSERTS
, which is different and used by
the Closure library.
Note that it is currently not possible to dynamically set *assert*
to false at
runtime; this compiler flag must explicitly be used to effect the elision.
:elide-asserts true
Determines whether the JavaScript output will be tabulated in a human-readable manner. Defaults to true.
:pretty-print true
With :advanced
mode optimizations, determines whether
readable names are emitted. This can be useful when debugging
issues in the optimized JavaScript and can aid in finding
missing externs.
Defaults to false.
:pseudo-names true
Determines whether comments will be output in the JavaScript that can be used to determine the original source of the compiled code.
Defaults to false.
:print-input-delimiter false
If targeting nodejs add this line. Takes no other options at the moment.
:target :nodejs
Wrap the JavaScript output in (function(){...};)()
to avoid clobbering globals.
Defaults to true when using advanced compilation, false otherwise.
:output-wrapper false
Configure externs files for external libraries.
For this option, and those below, you can find a very good explanation at: http://lukevanderhart.com/2011/09/30/using-javascript-and-clojurescript.html
Defaults to the empty vector []
.
:externs ["jquery-externs.js"]
Adds dependencies on external libraries. Note that files in these directories will be watched and a rebuild will occur if they are modified.
Defaults to the empty vector []
:libs ["closure/library/third_party/closure"]
Adds dependencies on foreign libraries. Be sure that the url returns a HTTP Code 200
Defaults to the empty vector []
:foreign-libs [{ :file "http://example.com/remote.js"
:provides ["my.example"]}]
Prepends the contents of the given files to each output file. Only valid with optimizations other than :none
.
Defaults to the empty vector []
:preamble ["license.js"]
Configure the input and output languages for the closure library.
May be :ecmascript3
, ecmascript5
, or ecmascript5-strict
.
Defaults to :ecmascript3
:language-in :ecmascript3
:language-out :ecmascript3
Configure warnings generated by the Closure compiler. A map from Closure warning to configuration value, only :error
, :warning
and :off
are supported.
:closure-warnings {:externs-validation :off}
The following Closure warning options are exposed to ClojureScript:
:access-controls
:ambiguous-function-decl
:debugger-statement-present
:check-regexp
:check-types
:check-useless-code
:check-variables
:const
:constant-property
:deprecated
:duplicate-message
:es5-strict
:externs-validation
:fileoverview-jsdoc
:global-this
:internet-explorer-checks
:invalid-casts
:missing-properties
:non-standard-jsdoc
:strict-module-dep-check
:tweaks
:undefined-names
:undefined-variables
:unknown-defines
:visiblity
See the Closure Compiler Warning wiki for detailed descriptions.
Set the values of closure libraries variables annotated with @define. A common usage is setting goog.DEBUG
to false.
:closure-defines {:goog.DEBUG false}
Define extra JSDoc annotations that a closure library might use so that they don't trigger compiler warnings.
:closure-extra-annotations #{"api"}
- Rationale
- Quick Start
- Differences from Clojure
- [Usage of Google Closure](Google Closure)