@niweera/node-asterer
Version:
A CLI tool to generate the AST of a given JavaScript File and save it in *.JSON format.
17 lines (14 loc) • 332 B
JavaScript
const path = require("path");
const getInputs = async () => ({
input_path: path.join(__dirname, "example.js"),
output_path: path.join(
path.resolve(__dirname, "../.."),
"saveAST",
"__mocks__",
"sample.json"
),
config_path: path.join(__dirname, "sample_config.json"),
});
module.exports = {
getInputs,
};