From f76b7549e71ffba0d07bbbc1b94251973c6e1be7 Mon Sep 17 00:00:00 2001 From: Kir_Antipov Date: Sun, 7 May 2023 08:14:55 +0000 Subject: [PATCH] Made custom tsconfig for build scripts --- scripts/tsconfig.json | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 scripts/tsconfig.json diff --git a/scripts/tsconfig.json b/scripts/tsconfig.json new file mode 100644 index 0000000..994cf49 --- /dev/null +++ b/scripts/tsconfig.json @@ -0,0 +1,7 @@ +{ + "extends": "../tsconfig.json", + "include": ["./**/*", "../src/**/*"], + "compilerOptions": { + "outDir": "./tmp/build", + }, +}