2020-03-29 07:33:54 -05:00
|
|
|
{:deps {:aliases [:dev]}
|
|
|
|
:dev-http {3449 "classpath:public"}
|
|
|
|
:http {:port 3448}
|
|
|
|
:nrepl {:port 3447}
|
|
|
|
|
|
|
|
:builds
|
|
|
|
{:main
|
|
|
|
{:target :browser
|
|
|
|
:output-dir "resources/public/js/"
|
|
|
|
:asset-path "/js"
|
2020-04-16 06:49:59 -05:00
|
|
|
:devtools {:browser-inject :main}
|
2020-04-17 08:03:34 -05:00
|
|
|
:build-options {:manifest-name "manifest.json"}
|
2020-04-16 06:49:59 -05:00
|
|
|
:modules
|
|
|
|
{:shared {:entries []}
|
|
|
|
:main {:entries [uxbox.main]
|
|
|
|
:depends-on #{:shared}}
|
|
|
|
:worker {:entries [uxbox.worker]
|
|
|
|
:web-worker true
|
|
|
|
:depends-on #{:shared}}}
|
2020-04-02 16:56:26 -05:00
|
|
|
:compiler-options
|
|
|
|
{:output-feature-set :es8
|
|
|
|
:output-wrapper false}
|
|
|
|
:release
|
|
|
|
{:output-dir "target/dist/js"
|
|
|
|
:compiler-options
|
|
|
|
{:fn-invoke-direct true
|
|
|
|
:source-map true
|
2020-04-08 09:54:44 -05:00
|
|
|
:anon-fn-naming-policy :off
|
2020-04-02 16:56:26 -05:00
|
|
|
:source-map-detail-level :all}}}}}
|