49 lines
1.6 KiB
JSON
49 lines
1.6 KiB
JSON
{
|
|
"$schema": "http://json-schema.org/schema",
|
|
"executors": {
|
|
"tsc": {
|
|
"implementation": "./src/executors/tsc/tsc.impl",
|
|
"batchImplementation": "./src/executors/tsc/tsc.batch-impl",
|
|
"schema": "./src/executors/tsc/schema.json",
|
|
"description": "Build a project using TypeScript."
|
|
},
|
|
"swc": {
|
|
"implementation": "./src/executors/swc/swc.impl",
|
|
"schema": "./src/executors/swc/schema.json",
|
|
"description": "Build a project using SWC."
|
|
},
|
|
"node": {
|
|
"implementation": "./src/executors/node/node.impl",
|
|
"schema": "./src/executors/node/schema.json",
|
|
"description": "Execute a Node application."
|
|
},
|
|
"verdaccio": {
|
|
"implementation": "./src/executors/verdaccio/verdaccio.impl",
|
|
"schema": "./src/executors/verdaccio/schema.json",
|
|
"description": "Start local registry with verdaccio"
|
|
}
|
|
},
|
|
"builders": {
|
|
"tsc": {
|
|
"implementation": "./src/executors/tsc/compat",
|
|
"schema": "./src/executors/tsc/schema.json",
|
|
"description": "Build a project using TypeScript."
|
|
},
|
|
"swc": {
|
|
"implementation": "./src/executors/swc/compat",
|
|
"schema": "./src/executors/swc/schema.json",
|
|
"description": "Build a project using SWC."
|
|
},
|
|
"node": {
|
|
"implementation": "./src/executors/node/compat",
|
|
"schema": "./src/executors/node/schema.json",
|
|
"description": "Execute a Node application."
|
|
},
|
|
"verdaccio": {
|
|
"implementation": "./src/executors/verdaccio/compat",
|
|
"schema": "./src/executors/verdaccio/schema.json",
|
|
"description": "Start local registry with verdaccio"
|
|
}
|
|
}
|
|
}
|