- Add comprehensive TypeScript interfaces for all config types - Implement ConfigManager singleton class with layered loading - Support for default, environment-specific, and environment variable configs - Add example .env file for sensitive configuration Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
20 lines
335 B
JSON
20 lines
335 B
JSON
{
|
|
"appName": "ERPAuto",
|
|
"version": "1.0.0",
|
|
"logLevel": "info",
|
|
"browser": {
|
|
"headless": false,
|
|
"slowMo": 50,
|
|
"timeout": 30000
|
|
},
|
|
"erp": {
|
|
"baseUrl": "",
|
|
"ignoreHttpsErrors": false
|
|
},
|
|
"paths": {
|
|
"tempDir": "./data/temp",
|
|
"outputDir": "./data/output",
|
|
"reportDir": "./data/reports"
|
|
}
|
|
}
|