From 7f6546115f230953b0518f213f1ac5aaa1fb3cd7 Mon Sep 17 00:00:00 2001 From: Guillermo Pages Date: Sun, 19 Oct 2025 13:33:56 +0200 Subject: [PATCH] fix: missing tsconfig --- tsconfig.prod.json | 12 ++++++++++++ tsconfig.test.json | 7 +++++++ 2 files changed, 19 insertions(+) create mode 100644 tsconfig.prod.json create mode 100644 tsconfig.test.json diff --git a/tsconfig.prod.json b/tsconfig.prod.json new file mode 100644 index 0000000..aa490d3 --- /dev/null +++ b/tsconfig.prod.json @@ -0,0 +1,12 @@ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "rootDir": "./", + "outDir": "build/" + }, + "exclude": [ + "build/", + "node_modules", + "test/**/*.ts" + ] +} \ No newline at end of file diff --git a/tsconfig.test.json b/tsconfig.test.json new file mode 100644 index 0000000..73716bc --- /dev/null +++ b/tsconfig.test.json @@ -0,0 +1,7 @@ +{ + "extends": "./tsconfig.json", + "exclude": [ + "build/", + "node_modules", + ] +} \ No newline at end of file