20 lines
594 B
JSON
20 lines
594 B
JSON
{
|
|
"extends": "../tsconfig.json",
|
|
"compilerOptions": {
|
|
"types": ["jest", "node"],
|
|
"esModuleInterop": true,
|
|
// Remove rootDir override as base config now handles it
|
|
// "rootDir": "..",
|
|
"outDir": "../build/tests", // Optional: specify separate output for tests if needed
|
|
"composite": true // Keep composite for potential future use
|
|
},
|
|
"include": [
|
|
"**/*.ts", // Keep existing test files
|
|
"../src/**/*.ts" // Add back source files referenced by tests
|
|
],
|
|
"exclude": [ // Add exclude for build output if needed
|
|
"../node_modules",
|
|
"../build"
|
|
]
|
|
}
|