-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuildconfig.js
More file actions
26 lines (20 loc) · 804 Bytes
/
buildconfig.js
File metadata and controls
26 lines (20 loc) · 804 Bytes
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
// Fail if language files in extra lang are missing keys or have extra keys
export const failOnMalformedExtraLang = true;
// Post build cleanup configuration
export const cleanup = {
keepExport: false,
keepExportStep: false,
keepGenerated: false,
disableTip: false,
};
export const failOnUnusedFiles = true;
export const disableTips = false;
export const disableWarnings = false;
// Terser validation configuration
// Options: "error" (fail build), "warning" (show warning but continue), "skip" (disable check)
export const terserValidation = "error";
export const publishConfig = {
addonUrl: "", // e.g., "https://www.construct.net/en/make-games/addons/111/my-addon"
itchioPage: "", // Format: "username/page-id" (taken from https://username.itch.io/page-id)
autoGenReadme: true,
};