-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathpoltergeist.config.json
More file actions
57 lines (57 loc) · 1.39 KB
/
Copy pathpoltergeist.config.json
File metadata and controls
57 lines (57 loc) · 1.39 KB
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
{
"version": "1.0",
"projectType": "node",
"targets": [
{
"name": "poltergeist",
"type": "executable",
"enabled": true,
"buildCommand": "pnpm run build",
"watchPaths": ["src/**/*.ts"],
"outputPath": "./dist/cli.js",
"outputPaths": ["dist/cli.js", "dist/polter.js"]
},
{
"name": "polter",
"type": "executable",
"enabled": true,
"buildCommand": "pnpm run build",
"outputPath": "./dist/polter.js",
"watchPaths": ["src/**/*.ts"]
},
{
"name": "cli",
"type": "executable",
"enabled": true,
"buildCommand": "pnpm run build",
"outputPath": "./dist/cli.js",
"watchPaths": ["src/**/*.ts"]
},
{
"name": "Poltergeist.app",
"type": "app-bundle",
"enabled": true,
"platform": "macos",
"buildCommand": "cd apps/mac && ./scripts/build.sh",
"bundleId": "com.poltergeist.app",
"watchPaths": ["apps/mac/**/*.swift"],
"outputPath": "apps/mac/build/Release/Poltergeist.app"
}
],
"statusScripts": [
{
"label": "Typecheck",
"command": "./scripts/status-typecheck.sh",
"cooldownSeconds": 60,
"timeoutSeconds": 120,
"maxLines": 6
},
{
"label": "Biome",
"command": "./scripts/status-biome.sh",
"cooldownSeconds": 60,
"timeoutSeconds": 120,
"maxLines": 3
}
]
}