-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathhexa.json
68 lines (68 loc) · 1.21 KB
/
hexa.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "The Hexa Compiler",
"version": "2023.1.6",
"entry": "cli",
"roots": ["source"],
"global": [
"data/decorator",
"compiler/normalizing/renaming",
"compiler/normalizer",
"compiler/typer",
"compiler/lexer",
"compiler/preprocessor",
"compiler/parser",
"tests/testLexer",
"tests/testParser",
"tests/testTyper",
"targets/genJs",
"targets/genC",
"data/token",
"data/nice",
"data/nodes",
"data/nodeType",
"data/data",
"data/helper",
"data/types",
"data/project",
"data/compilerError",
"data/hints",
"toHexa/clang/clangTree",
"toHexa/clang/clangMinifier",
"toHexa/clang/clangGenerator",
"toHexa/clang/clangMain",
"targets",
"cli/args",
"cli/help",
"repl",
"main",
"cli/symlink",
"cli/init",
"server/format",
"server/prettify",
"server"
],
"define":
{
"times": false,
"debug": false
},
"output": "hexa-node.js",
"license": "LGPL-3.0-only",
"author": "Oleh (PeyTy)",
"addLicenseNoticeToOutput": true,
"randomSeed": 1,
"targets": [
{
"name": "default",
"generator": "js",
"options": ["nodejs"],
"output": "hexa-node.js"
},
{
"name": "native",
"generator": "c",
"options": [],
"output": "hexa-diff/hexa.native.c"
}
]
}