From ae1f9745b302c53af231b48007734f9eaab98db7 Mon Sep 17 00:00:00 2001 From: einhornimmond Date: Tue, 17 Jun 2025 19:37:53 +0200 Subject: [PATCH] ignore tests for tsc --- config-schema/tsconfig.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config-schema/tsconfig.json b/config-schema/tsconfig.json index 04306edad..d65460927 100644 --- a/config-schema/tsconfig.json +++ b/config-schema/tsconfig.json @@ -1,7 +1,6 @@ { "compilerOptions": { /* Visit https://aka.ms/tsconfig.json to read more about this file */ - /* Basic Options */ // "incremental": true, /* Enable incremental compilation */ "target": "es6", /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019', 'ES2020', 'ES2021', or 'ESNEXT'. */ @@ -69,5 +68,6 @@ "skipLibCheck": true, /* Skip type checking of declaration files. */ "forceConsistentCasingInFileNames": true /* Disallow inconsistently-cased references to the same file. */ }, - "references": [] /* Any project that is referenced must itself have a `references` array (which may be empty). */ + "references": [], /* Any project that is referenced must itself have a `references` array (which may be empty). */ + "exclude": ["**/*.test.ts", "**/*.spec.ts", "test/*"], }