Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add new supported :language-out configuration options #341

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions src/figwheel/main/schema/cljs_options.clj
Original file line number Diff line number Diff line change
Expand Up @@ -497,6 +497,10 @@ Defaults to false.

(s/def ::closure-language-in-out-opts
#{:ecmascript-next :es-next
:ecmascript-2021 :es-2021
:ecmascript-2020 :es-2020
:ecmascript-2019 :es-2019
:ecmascript-2018 :es-2018
:ecmascript-2017 :es-2017
:ecmascript-2016 :es-2016
:ecmascript-2015 :es-2015
Expand All @@ -514,6 +518,10 @@ Defaults to false.
"Configure the input and output languages for the closure library. May be:

* :ecmascript-next identical to :es-next
* :ecmascript-2021 identical to :es-2021
* :ecmascript-2020 identical to :es-2020
* :ecmascript-2019 identical to :es-2019
* :ecmascript-2018 identical to :es-2018
* :ecmascript-2017 identical to :es-2017
* :ecmascript-2016 identical to :es-2016
* :ecmascript-2015 identical to :es-2015
Expand All @@ -535,6 +543,10 @@ Defaults to :ecmascript5
"Configure the input and output languages for the closure library. May be:

* :ecmascript-next identical to :es-next
* :ecmascript-2021 identical to :es-2021
* :ecmascript-2020 identical to :es-2020
* :ecmascript-2019 identical to :es-2019
* :ecmascript-2018 identical to :es-2018
* :ecmascript-2017 identical to :es-2017
* :ecmascript-2016 identical to :es-2016
* :ecmascript-2015 identical to :es-2015
Expand Down