🎉 Add cljs benchmark code under dev directory

This commit is contained in:
Andrey Antukh
2022-02-24 23:41:03 +01:00
committed by Alonso Torres
parent 84a36624a6
commit 6e667e078c
2 changed files with 79 additions and 3 deletions

View File

@@ -59,6 +59,23 @@
:anon-fn-naming-policy :off
:source-map-detail-level :all}}}
:bench
{:target :node-script
:output-to "target/bench.js"
:output-dir "target/bench/"
:main cljs.user/main
:compiler-options
{:output-feature-set :es8
:output-wrapper false
:warnings {:fn-deprecated false}}
:release
{:compiler-options
{:fn-invoke-direct true
:elide-asserts true
:anon-fn-naming-policy :off}}}
:test
{:target :node-test
:output-to "target/tests.js"