:source-paths ["src/clj" "src/cljs" "src/cljc" "dev"]Then I added it to the :source-path of cljsbuild and uberjar. Here's the uberjar definition as an example, which also contains one cljsbuild conf:
:uberjar {:source-paths ^:replace ["src/clj" "src/cljc"]
:hooks [leiningen.cljsbuild leiningen.sass minify-assets.plugin/hooks]
:env {:production true}
:aot :all
:omit-source true
:cljsbuild {:jar true
:builds {:app
{:source-paths ^:replace ["src/cljs" "src/cljc"]
:compiler {
:optimizations :advanced
:pretty-print false}}}}}})
Hope that helps,
--