config.ts 708 B

1234567891011121314151617181920212223242526272829
  1. /**
  2. * @Author HonorLee (dev@honorlee.me)
  3. * @Version 1.0 (2019-09-17)
  4. * @License MIT
  5. */
  6. export = {}
  7. const CONFIG = {
  8. //入口文件,默认App目录
  9. entrance:'main.js',
  10. //扩展模块
  11. module:[
  12. {
  13. // MVC框架模块
  14. name:'MVC', //自动查找system/module对应名称模块
  15. enable:true,
  16. // 配置信息,模块初始化时自动传入
  17. option:{
  18. root_path:'app/mvc',
  19. server_port:8080
  20. }
  21. }
  22. ],
  23. /**
  24. * Log (file) Level: ALL | log | info | debug | warn | error
  25. * Logs will write into log/{Level}.{Date}.log
  26. */
  27. Log_Level:'info',
  28. };
  29. SYSTEM.CONFIG = CONFIG;