diff --git a/packages/browser/tsconfig.test-integration.json b/packages/browser/tsconfig.test-integration.json index 2e6d4eee46e8..06a946007c8b 100644 --- a/packages/browser/tsconfig.test-integration.json +++ b/packages/browser/tsconfig.test-integration.json @@ -1,7 +1,7 @@ { "extends": "./tsconfig.json", - "include": ["test/integration/*"], + "include": ["test/integration/**/*"], "compilerOptions": { // should include all types from `./tsconfig.json` plus types for all test frameworks used diff --git a/packages/browser/tsconfig.test.json b/packages/browser/tsconfig.test.json index ca0255dbfb07..9bdd2aa76dab 100644 --- a/packages/browser/tsconfig.test.json +++ b/packages/browser/tsconfig.test.json @@ -1,8 +1,8 @@ { "extends": "./tsconfig.json", - "include": ["test/*"], - "exclude": ["test/integration/*"], + "include": ["test/**/*"], + "exclude": ["test/integration/**/*"], "compilerOptions": { // should include all types from `./tsconfig.json` plus types for all test frameworks used