chore: move test tsconfigs

This commit is contained in:
Peter Steinberger
2026-05-03 12:56:42 +01:00
parent f7522edb96
commit adc4fd453b
22 changed files with 126 additions and 123 deletions

View File

@@ -8,9 +8,9 @@ const tsgoPath = path.join(repoRoot, "node_modules", ".bin", "tsgo");
const coreGraphs = [
{ name: "core", config: "tsconfig.core.json" },
{ name: "core-test", config: "tsconfig.core.test.json" },
{ name: "core-test-agents", config: "tsconfig.core.test.agents.json" },
{ name: "core-test-non-agents", config: "tsconfig.core.test.non-agents.json" },
{ name: "core-test", config: "test/tsconfig/tsconfig.core.test.json" },
{ name: "core-test-agents", config: "test/tsconfig/tsconfig.core.test.agents.json" },
{ name: "core-test-non-agents", config: "test/tsconfig/tsconfig.core.test.non-agents.json" },
];
function normalizeFilePath(filePath) {

View File

@@ -19,15 +19,15 @@ const GRAPH_DEFINITIONS = {
description: "core production graph",
},
"core-test": {
config: "tsconfig.core.test.json",
config: "test/tsconfig/tsconfig.core.test.json",
description: "core colocated test graph",
},
"core-test-agents": {
config: "tsconfig.core.test.agents.json",
config: "test/tsconfig/tsconfig.core.test.agents.json",
description: "diagnostic slice: core agent colocated tests",
},
"core-test-non-agents": {
config: "tsconfig.core.test.non-agents.json",
config: "test/tsconfig/tsconfig.core.test.non-agents.json",
description: "diagnostic slice: core tests excluding agent test roots",
},
extensions: {
@@ -35,7 +35,7 @@ const GRAPH_DEFINITIONS = {
description: "bundled extension production graph",
},
"extensions-test": {
config: "tsconfig.extensions.test.json",
config: "test/tsconfig/tsconfig.extensions.test.json",
description: "bundled extension colocated test graph",
},
};