20 lines
690 B
Clojure
20 lines
690 B
Clojure
;; shadow-cljs configuration
|
|
{:source-paths
|
|
["src/dev"
|
|
"src/main"
|
|
"src/test"]
|
|
|
|
:dependencies
|
|
[[io.helins/wasm "0.0.0-alpha3"] ; https://cljdoc.org/d/io.helins/wasm/0.0.0-alpha3/doc/readme
|
|
[io.helins/binf "1.1.0"]
|
|
[metosin/malli "0.16.1"] ; https://github.com/metosin/malli
|
|
[meander/epsilon "0.0.650"] ; https://github.com/noprompt/meander
|
|
[org.clojure/tools.reader "1.4.2"] ; https://github.com/clojure/tools.reader
|
|
[binaryage/devtools "1.0.7"]]
|
|
|
|
:builds
|
|
{:experiment {:target :browser
|
|
:output-dir "experiment/js"
|
|
:modules {:main {:init-fn tock.experiment/main}}}}
|
|
|
|
:dev-http {8909 ["experiment" "public"]}} |