diff --git a/jest-e2e.json b/jest-e2e.json index 4dccfdafa..e0a3c5d31 100644 --- a/jest-e2e.json +++ b/jest-e2e.json @@ -16,7 +16,7 @@ "testTimeout": 10000, "globals": { "ts-jest": { - "tsconfig": "tsconfig.test.json" + "tsconfig": "test/tsconfig.json" } } } diff --git a/package.json b/package.json index 3f887e1d6..092291fe1 100644 --- a/package.json +++ b/package.json @@ -108,7 +108,7 @@ "testEnvironment": "node", "globals": { "ts-jest": { - "tsconfig": "tsconfig.test.json" + "tsconfig": "test/tsconfig.json" } } } diff --git a/tsconfig.test.json b/test/tsconfig.json similarity index 60% rename from tsconfig.test.json rename to test/tsconfig.json index 5787af45b..fa51fa43e 100644 --- a/tsconfig.test.json +++ b/test/tsconfig.json @@ -1,5 +1,5 @@ { - "extends": "./tsconfig.json", + "extends": "../tsconfig.json", "compilerOptions": { "strict": false } diff --git a/tsconfig.test.json.license b/test/tsconfig.json.license similarity index 100% rename from tsconfig.test.json.license rename to test/tsconfig.json.license