From b6ae5efb8d3204ca31c9be3eb83f576d98cc4d18 Mon Sep 17 00:00:00 2001 From: Adrian Andersen Date: Mon, 27 Jan 2025 21:45:33 +0100 Subject: [PATCH] fix: include .adonisjs in tuyau build --- backend/tsconfig.tuyau.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/tsconfig.tuyau.json b/backend/tsconfig.tuyau.json index a59e66f..8bd8bf7 100644 --- a/backend/tsconfig.tuyau.json +++ b/backend/tsconfig.tuyau.json @@ -4,6 +4,6 @@ "composite": true, "declaration": true }, - "include": ["."], + "include": [".", ".adonisjs/*"], "exclude": ["node_modules", "build", "**/dist", "tests/*"] }