-
Notifications
You must be signed in to change notification settings - Fork 0
/
.build.json
65 lines (65 loc) · 1.49 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
60
61
62
63
64
65
{
"log": {
"enabled": true,
"debug": false,
"console": true,
"output": ""
},
"profiles": {
"production": ["clean", "compile", "typings", "typedoc", "lint", "changelog"],
"development": ["serve", "watch", "lint", "compile"],
"serve": ["serve"]
},
"lint": {
"locations": [ "*.json", "src/**/*.ts" ],
"rules": { }
},
"clean": {
"locations": ["dist/*", "types/lib/*", "typedoc/*"]
},
"changelog": {
"log": "CHANGELOG.md"
},
"serve": {
"sslKey": "node_modules/@vladmandic/build/cert/https.key",
"sslCrt": "node_modules/@vladmandic/build/cert/https.crt",
"httpPort": 8000,
"httpsPort": 8001,
"documentRoot": "",
"defaultFolder": "public/",
"defaultFile": "index.html",
"cors": false
},
"build": {
"global": {
"target": "es2021",
"sourcemap": true,
"treeShaking": true,
"ignoreAnnotations": true,
"platform": "browser",
"format": "esm",
"banner": { "js": "/*\n TEMPLATE\n homepage: <https://github.com/vladmandic/TEMPLATE>\n author: <https://github.com/vladmandic>'\n*/\n" }
},
"development": {
"minify": false
},
"production": {
"minify": true
},
"targets": [
{
"name": "application",
"input": "src/index.ts",
"output": "dist/index.js",
"typings": "types/lib",
"typedoc": "typedoc"
}
]
},
"watch": {
"locations": [ "src/**/*" ]
},
"typescript": {
"allowJs": false
}
}