From 830d444dd5e18899d0ce75d5958856282edfcb8d Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Sun, 1 Feb 2026 00:59:00 +0000 Subject: [PATCH] Initial upload: AI Context Generator CLI with TypeScript implementation --- app/ai-context-generator-cli/tsconfig.json | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 app/ai-context-generator-cli/tsconfig.json diff --git a/app/ai-context-generator-cli/tsconfig.json b/app/ai-context-generator-cli/tsconfig.json new file mode 100644 index 0000000..f4b80bd --- /dev/null +++ b/app/ai-context-generator-cli/tsconfig.json @@ -0,0 +1,20 @@ +{ + "compilerOptions": { + "target": "ES2020", + "module": "commonjs", + "lib": ["ES2020"], + "outDir": "./dist", + "rootDir": "./src", + "strict": true, + "esModuleInterop": true, + "skipLibCheck": true, + "forceConsistentCasingInFileNames": true, + "resolveJsonModule": true, + "declaration": true, + "declarationMap": true, + "sourceMap": true, + "moduleResolution": "node" + }, + "include": ["src/**/*"], + "exclude": ["node_modules", "dist", "tests"] +}