You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
LemonJS/config.example

23 lines
590 B

var config = {
lemon_bin: "./lemon-src/lemon-js",
input_path: "example/",
output_path: "example/",
/**
* В папке назначения должен лежать файл parser.y;
* Или другой файл парсера с именем <file_name>.y
*/
file_name: "parser",
/**
* Флаги для лемона, можно посмотреть в README.md
*/
flags: "-l",
/**
* Before use it, you must configurate header.tmpl and footer.tmpl
*/
require_templates: "require_js/"
};
module.exports = config;