LemonJS/config.example

23 lines
590 B
Plaintext
Raw Normal View History

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