From e8edff0ef24ece8ef2131e93908332e769cc435f Mon Sep 17 00:00:00 2001 From: hhefesto Date: Wed, 14 Jan 2026 18:12:11 -0600 Subject: [PATCH] Make HLS find and work within all executables and all test modules --- hie.yaml | 23 ++++++++++++++++++++++- 1 file changed, 22 insertions(+), 1 deletion(-) diff --git a/hie.yaml b/hie.yaml index 53890ad..13f95ff 100644 --- a/hie.yaml +++ b/hie.yaml @@ -1,10 +1,31 @@ cradle: cabal: - - path: "./src" + - path: "src" component: "lib:telomare" + + - path: "app/Main.hs" + component: "telomare:exe:telomare" + + - path: "app/Repl.hs" + component: "telomare:exe:telomare-repl" + + - path: "app/Evaluare.hs" + component: "telomare:exe:telomare-evaluare" + + - path: "app/LSP.hs" + component: "telomare:exe:telomare-lsp" + - path: "./test/Spec.hs" component: "test:telomare-test" + + - path: "test/ParserTests.hs" + component: "telomare:test:telomare-parser-test" + + - path: "test/ResolverTests.hs" + component: "telomare:test:telomare-resolver-test" + - path: "./test/SizingTest.hs" component: "test:telomare-sizing-test" + - path: "./test/SizingTests.hs" component: "test:telomare-sizing-test"