2021-06-02 07:10:25 -05:00
|
|
|
{:deps {:aliases [:dev]}
|
2021-05-04 07:15:03 -05:00
|
|
|
:source-paths ["src" "vendor" "../common"]
|
2020-06-29 09:07:48 -05:00
|
|
|
|
|
|
|
:builds
|
|
|
|
{:main
|
|
|
|
{:target :node-script
|
|
|
|
:main app.core/main
|
2020-07-02 03:42:01 -05:00
|
|
|
:output-to "target/app.js"
|
|
|
|
:output-dir "target/app/"
|
2020-06-29 09:07:48 -05:00
|
|
|
:devtools {:before-load-async app.core/stop
|
|
|
|
:after-load app.core/start}
|
|
|
|
|
|
|
|
:compiler-options
|
2022-08-24 03:59:53 -05:00
|
|
|
{:output-feature-set :es2020
|
2020-06-29 09:07:48 -05:00
|
|
|
:output-wrapper false}
|
|
|
|
|
|
|
|
:release
|
2024-10-09 07:01:05 -05:00
|
|
|
{:compiler-options
|
2020-06-29 09:07:48 -05:00
|
|
|
{:fn-invoke-direct true
|
|
|
|
:source-map true
|
2021-11-30 07:11:52 -05:00
|
|
|
:optimizations #shadow/env ["PENPOT_BUILD_OPTIMIZATIONS" :as :keyword :default :simple]
|
2020-06-29 09:07:48 -05:00
|
|
|
:pseudo-names true
|
|
|
|
:pretty-print true
|
|
|
|
:anon-fn-naming-policy :off
|
|
|
|
:source-map-detail-level :all}}}}}
|