Made custom tsconfig for build scripts

This commit is contained in:
Kir_Antipov 2023-05-07 08:14:55 +00:00
parent a5dc998323
commit f76b7549e7

7
scripts/tsconfig.json Normal file
View file

@ -0,0 +1,7 @@
{
"extends": "../tsconfig.json",
"include": ["./**/*", "../src/**/*"],
"compilerOptions": {
"outDir": "./tmp/build",
},
}