adding ags stuff

This commit is contained in:
Chris Cochrun 2024-06-17 11:25:35 -05:00
parent 88dbdc172a
commit 1599875a5c
7 changed files with 142 additions and 14 deletions

14
.config/ags/project.clj Normal file
View file

@ -0,0 +1,14 @@
(defproject ags-config "0.0.1"
:dependencies [[org.clojure/clojurescript "1.11.54"]
[org.clojure/clojure "1.11.3"]]
:plugins [[lein-cljsbuild "1.1.8"]]
:cljsbuild {
:builds [{
; The path to the top-level ClojureScript source directory:
:source-paths ["src"]
; The standard ClojureScript compiler options:
; (See the ClojureScript compiler documentation for details.)
:compiler {
:output-to "config.js" ; default: target/cljsbuild-main.js
:optimizations :simple
:pretty-print true}}]})