From 6036ea4d3acd87b39cce154d64cea1a7a6f41e78 Mon Sep 17 00:00:00 2001 From: Ivan Goncharov Date: Tue, 3 Nov 2020 00:29:38 +0200 Subject: [PATCH] TS: exclude integration tests from root tsconfig.json --- package.json | 1 - tsconfig.json | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 6c8409a2f6..93dca907cc 100644 --- a/package.json +++ b/package.json @@ -27,7 +27,6 @@ "node": ">= 10.x" }, "scripts": { - "test2": "env", "preversion": ". ./resources/checkgit.sh && npm ci", "version": "node resources/gen-version.js && npm test && git add src/version.js", "fuzzonly": "mocha --full-trace src/**/__tests__/**/*-fuzz.js", diff --git a/tsconfig.json b/tsconfig.json index d25aa26463..d158e41db9 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,4 +1,5 @@ { + "exclude": ["integrationTests/ts/**/*"], "compilerOptions": { "module": "commonjs", "lib": ["es6", "esnext.asynciterable"],