-
Notifications
You must be signed in to change notification settings - Fork 0
/
cep.config.ts
64 lines (59 loc) · 1.63 KB
/
cep.config.ts
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
import { CEP_Config } from "vite-cep-plugin";
import { version } from "./package.json";
const config: CEP_Config = {
version,
id: "com.buck-post-toools=svelte.cep",
displayName: "Buck Post Toools",
symlink: "local",
port: 3000,
servePort: 5000,
startingDebugPort: 8860,
extensionManifestVersion: 6.0,
requiredRuntimeVersion: 9.0,
hosts: [
{ name: "AEFT", version: "[0.0,99.9]" },
{ name: "AME", version: "[0.0,99.9]" },
{ name: "AUDT", version: "[0.0,99.9]" },
{ name: "FLPR", version: "[0.0,99.9]" },
{ name: "IDSN", version: "[0.0,99.9]" },
{ name: "ILST", version: "[0.0,99.9]" },
{ name: "KBRG", version: "[0.0,99.9]" },
{ name: "PHXS", version: "[0.0,99.9]" },
{ name: "PPRO", version: "[0.0,99.9]" },
],
type: "Panel",
iconDarkNormal: "./src/assets/light-icon.png",
iconNormal: "./src/assets/dark-icon.png",
iconDarkNormalRollOver: "./src/assets/light-icon.png",
iconNormalRollOver: "./src/assets/dark-icon.png",
parameters: ["--v=0", "--enable-nodejs", "--mixed-context"],
width: 500,
height: 550,
panels: [
{
mainPath: "./main/index.html",
name: "main",
panelDisplayName: "Buck Post Toools",
autoVisible: true,
width: 600,
height: 650,
},
],
build: {
jsxBin: "off",
sourceMap: true,
},
zxp: {
country: "US",
province: "CA",
org: "MyCompany",
password: "mypassword",
tsa: "http://timestamp.digicert.com/",
sourceMap: false,
jsxBin: "off",
},
installModules: [],
copyAssets: [],
copyZipAssets: [],
};
export default config;