@codervisor/devlog-ai
Version:
AI Chat History Extractor & Docker-based Automation - TypeScript implementation for GitHub Copilot and other AI coding assistants with automated testing capabilities
27 lines (26 loc) • 428 B
JSON
{
"extends": "../../tsconfig.json",
"compilerOptions": {
"outDir": "./build",
"rootDir": "./src",
"declaration": true,
"declarationMap": true,
"composite": false,
"incremental": false,
"baseUrl": ".",
"paths": {
"@/*": [
"./src/*"
]
}
},
"include": [
"src/**/*"
],
"exclude": [
"node_modules",
"build",
"**/*.test.ts",
"**/*.spec.ts"
]
}