diff options
author | Alexander Foremny <aforemny@posteo.de> | 2024-02-12 10:05:02 +0100 |
---|---|---|
committer | Alexander Foremny <aforemny@posteo.de> | 2024-02-12 10:25:37 +0100 |
commit | 68566ca5a376f8508fdd1c5eff3155cde7929850 (patch) | |
tree | 3573f5b5fe392d6b46f08ef259a2be65baf77308 /json2sql.cabal | |
parent | 33faca6f99dc207e81497297c205a1ff29ae2f33 (diff) |
refactor `Query`
Diffstat (limited to 'json2sql.cabal')
-rw-r--r-- | json2sql.cabal | 24 |
1 files changed, 18 insertions, 6 deletions
diff --git a/json2sql.cabal b/json2sql.cabal index aab906b..1cfd4da 100644 --- a/json2sql.cabal +++ b/json2sql.cabal @@ -12,17 +12,21 @@ build-type: Simple extra-doc-files: CHANGELOG.md -- extra-source-files: -common warnings - ghc-options: -Wall - executable json2sql - import: warnings + ghc-options: + -Wall + -fno-warn-incomplete-patterns + -fno-warn-name-shadowing main-is: Main.hs other-modules: Debug Exception - Field - Record + Query + Query.Field + Query.Parser + Query.Printer + Query.Record + Query.Type Store -- other-extensions: build-depends: base ^>=4.16.4.0, @@ -46,3 +50,11 @@ executable json2sql vector hs-source-dirs: app default-language: GHC2021 + default-extensions: + AllowAmbiguousTypes + BlockArguments + GeneralizedNewtypeDeriving + OverloadedRecordDot + OverloadedStrings + ViewPatterns + |