-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpnp-debug.js
39 lines (32 loc) · 943 Bytes
/
pnp-debug.js
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
// build funcs
const tasks = require("./build/tools/buildsystem").Tasks.Build,
path = require("path");
/**
* The configuration used to build the project
*/
const config = {
// root location, relative
packageRoot: path.resolve(".\\debug"),
// the list of packages to be built, in order
// can be a string name or a plain object with additional settings
/**
* Plain object format
* {
* "name": string, // required
* "assets": string[], // optional, default is config.assets
* "buildChain": (ctx) => Promise<void>[], // optional, default is config.buildChain
* }
*/
packages: [
"launch",
],
// relative to the package folder
assets: [],
// the set of tasks run on each project during a build
buildPipeline: [
tasks.buildProject,
tasks.replaceDebug,
],
configFile: "tsconfig.json",
}
module.exports = config;