generated from vladmandic/template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.build.json
59 lines (59 loc) · 1.19 KB
/
.build.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
{
"log": {
"enabled": true,
"debug": false,
"console": true,
"output": ""
},
"profiles": {
"production": ["clean", "lint", "compile"],
"development": ["watch", "lint", "compile"]
},
"lint": {
"locations": [ "*.json", "src/**/*.ts" ],
"rules": { }
},
"clean": {
"locations": ["dist/*", "types/lib/*", "typedoc/*"]
},
"changelog": {
"log": "CHANGELOG.md"
},
"serve": {
},
"build": {
"global": {
"target": "es2021",
"sourcemap": true,
"treeShaking": true,
"ignoreAnnotations": true,
"platform": "node",
"format": "cjs",
"banner": { "js": "/*\n Chess\n homepage: <https://github.com/vladmandic/chess>\n author: <https://github.com/vladmandic>'\n*/\n" }
},
"development": {
"minify": false
},
"production": {
"minify": true
},
"targets": [
{
"name": "analyze",
"input": "src/analyze.ts",
"output": "dist/analyze.js"
},
{
"name": "battle",
"input": "src/battle.ts",
"output": "dist/battle.js"
}
]
},
"watch": {
"locations": [ "src/**/*" ]
},
"typescript": {
"allowJs": false
}
}