From 8a555eeddd18b4118f9ab41ca654dbeac9eef696 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/tsconfig.test.json | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 app/ai-context-generator-cli/tsconfig.test.json diff --git a/app/ai-context-generator-cli/tsconfig.test.json b/app/ai-context-generator-cli/tsconfig.test.json new file mode 100644 index 0000000..958d069 --- /dev/null +++ b/app/ai-context-generator-cli/tsconfig.test.json @@ -0,0 +1,17 @@ +{ + "compilerOptions": { + "target": "ES2020", + "module": "commonjs", + "lib": ["ES2020"], + "strict": true, + "esModuleInterop": true, + "skipLibCheck": true, + "forceConsistentCasingInFileNames": true, + "resolveJsonModule": true, + "declaration": true, + "sourceMap": true, + "moduleResolution": "node" + }, + "include": ["src/**/*", "tests/**/*"], + "exclude": ["node_modules", "dist"] +}