From 5134515ff68a00726c83879d9ef2d0ed45bc538a Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Sun, 1 Feb 2026 00:59:01 +0000 Subject: [PATCH] Initial upload: AI Context Generator CLI with TypeScript implementation --- app/ai-context-generator-cli/jest.config.js | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 app/ai-context-generator-cli/jest.config.js diff --git a/app/ai-context-generator-cli/jest.config.js b/app/ai-context-generator-cli/jest.config.js new file mode 100644 index 0000000..1e74677 --- /dev/null +++ b/app/ai-context-generator-cli/jest.config.js @@ -0,0 +1,13 @@ +module.exports = { + preset: 'ts-jest', + testEnvironment: 'node', + roots: ['/tests'], + testMatch: ['**/*.test.ts'], + moduleFileExtensions: ['ts', 'js', 'json'], + collectCoverageFrom: [ + 'src/**/*.ts', + '!src/**/*.d.ts', + ], + coverageDirectory: 'coverage', + verbose: true, +};