From 36d92246ad634f3916d755988c6b9fc38dc75e2a Mon Sep 17 00:00:00 2001 From: Sonali Thakur Date: Wed, 30 Oct 2024 17:33:50 +0530 Subject: [PATCH] exculde unit test from build (#97) --- tsconfig.json | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index b1d064c..5851dbf 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -2,13 +2,12 @@ "extends": "./node_modules/gts/tsconfig-google.json", "compilerOptions": { "target": "ES2021", - "rootDir": "./", + "rootDir": "src", "outDir": "build", "resolveJsonModule": true, "skipLibCheck": true, "strict": false, "moduleResolution": "node" }, - "include": ["src", "test"], - "exclude": ["build", "scripts"] + "exclude": ["build", "scripts", "test"] }