2021-05-28 06:50:42 -05:00
|
|
|
{:deps {:aliases [:dev]}
|
|
|
|
:builds
|
|
|
|
{:test
|
2024-11-18 08:55:13 -05:00
|
|
|
{:target :esm
|
|
|
|
:output-dir "target/tests"
|
|
|
|
:runtime :node
|
|
|
|
:js-options {:js-provider :import}
|
2021-05-28 06:50:42 -05:00
|
|
|
|
2024-11-18 08:55:13 -05:00
|
|
|
|
|
|
|
:modules
|
|
|
|
{:test {:init-fn common-tests.runner/-main
|
|
|
|
:prepend-js "globalThis.navigator = {userAgent: \"\"}"}}}
|
2022-01-12 14:23:25 -05:00
|
|
|
|
|
|
|
:bench
|
|
|
|
{:target :node-script
|
|
|
|
:output-to "target/bench.js"
|
|
|
|
:output-dir "target/bench/"
|
|
|
|
:main bench/main
|
|
|
|
:devtools {:autoload false}
|
|
|
|
|
|
|
|
:compiler-options
|
|
|
|
{:output-feature-set :es-next
|
|
|
|
:output-wrapper false}}}
|
|
|
|
}
|
2021-05-28 06:50:42 -05:00
|
|
|
|
2021-11-30 11:22:17 -05:00
|
|
|
|