This repository has been archived by the owner on May 2, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ns.cabal
51 lines (47 loc) · 1.51 KB
/
ns.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
cabal-version: 1.12
-- This file has been generated from package.yaml by hpack version 0.33.0.
--
-- see: https://github.com/sol/hpack
--
-- hash: 474e47212ecaf08f6e577eb5746fba78890c7df36f300d0a203034641a1d5da4
name: ns
version: 0.0.0
build-type: Simple
library
exposed-modules:
Language.NonSense.AST
Language.NonSense.Parser
Language.NonSense.Transpiler
Language.NonSense.TypeChecker
Language.TypeScript.AST
Language.TypeScript.PrettyPrinter
NSPrelude
other-modules:
Paths_ns
hs-source-dirs:
src
default-extensions: OverloadedStrings GeneralizedNewtypeDeriving DerivingStrategies FlexibleInstances BlockArguments NoImplicitPrelude LambdaCase NamedFieldPuns DataKinds MultiParamTypeClasses GADTs UndecidableInstances DuplicateRecordFields
ghc-options: -Wincomplete-patterns
build-depends:
base >=4.14.1.0 && <5
, containers
, megaparsec
, mtl
, record-dot-preprocessor
, record-hasfield
, text
default-language: Haskell2010
executable ns-exe
main-is: Main.hs
other-modules:
Paths_ns
hs-source-dirs:
app
default-extensions: OverloadedStrings GeneralizedNewtypeDeriving DerivingStrategies FlexibleInstances BlockArguments NoImplicitPrelude LambdaCase NamedFieldPuns DataKinds MultiParamTypeClasses GADTs UndecidableInstances DuplicateRecordFields
ghc-options: -Wincomplete-patterns
build-depends:
base >=4.14.1.0 && <5
, filepath
, ns
, text
default-language: Haskell2010