-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathincremental.config.json
More file actions
36 lines (36 loc) · 1.35 KB
/
incremental.config.json
File metadata and controls
36 lines (36 loc) · 1.35 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
{
"$schema": "./config.schema.json",
"baseRoot": ".",
"watches": [
{
"name": "main",
"executeBeforeReady": true,
"watchRoot": ".",
"ignored": [ ".git", "node_modules", "Output" ],
"sources": [ "**/*.json", "**/*.md" ],
"autoCreateDir": ":watchedRoot:/Output/:changedRelPath:",
"execAfterReady": "node :baseRoot:/node_modules/typescript/bin/tsc -w -p :watchedRoot:",
"triggeredCommands": [
{
"triggeringEvents": [ "add", "change" ],
"commands": [ "cp :changedAbsPath: :watchedRoot:/Output/:changedRelFolder:" ]
}
]
},
{
"name": "main1",
"executeBeforeReady": true,
"watchRoot": ".",
"ignored": [ ".git", "node_modules", "Output" ],
"sources": [ "**/*.json", "**/*.md" ],
"autoCreateDir": ":watchedRoot:/Output/:changedRelPath:",
"execAfterReady": "node :baseRoot:/node_modules/typescript/bin/tsc -w -p :watchedRoot:",
"triggeredCommands": [
{
"triggeringEvents": [ "add", "change" ],
"commands": [ "cp :changedAbsPath: :watchedRoot:/Output/:changedRelFolder:" ]
}
]
}
]
}