LemonJS/config.template

23 lines
594 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

var config = {
lemon_bin: "./lemon-src/lemon-js",
input_path: "parser_template/",
output_path: "out/",
/**
* В папке назначения должен лежать файл 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;