From 655b62c81e0e863694f6fd9c9743159bbbe8947a Mon Sep 17 00:00:00 2001 From: jhalitaksoy Date: Wed, 30 Jun 2021 19:49:58 +0300 Subject: [PATCH] excluded the tests folder due typescript rootDir error --- tsconfig.json | 27 +++++++++++++++------------ 1 file changed, 15 insertions(+), 12 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index a0ac6fd..e1334ed 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,13 +1,16 @@ { - "compilerOptions": { - "target": "es5", - "module": "commonjs", - "outDir": "./dist", - "rootDir": "./src", - "strict": true, - "esModuleInterop": true, - "skipLibCheck": true, - "forceConsistentCasingInFileNames": true, - "sourceMap": true - } - } \ No newline at end of file + "compilerOptions": { + "target": "es5", + "module": "commonjs", + "outDir": "./dist", + "rootDir": "./src", + "strict": true, + "esModuleInterop": true, + "skipLibCheck": true, + "forceConsistentCasingInFileNames": true, + "sourceMap": true + }, + "exclude": [ + "tests", + ] +} \ No newline at end of file