type2/tools/build.prj.json
Christian Fraß e03c21f0a7 [add] readme
2022-03-19 19:23:38 +01:00

59 lines
958 B
JSON

{
"name": "type2",
"version": "0.1.0",
"dependencies": [
],
"roottask": {
"name": "link",
"type": "schwamm",
"parameters": {
"includes": [
"temp/type2.swm.json"
],
"output": {
}
},
"sub": [
{
"name": "build",
"type": "schwamm",
"parameters": {
"includes": [
"lib/plankton/plankton.swm.json"
],
"inputs": {
"logic-impl": [
"temp/unlinked.js"
]
},
"output": {
"dump": {
"logic-impl": "build/type2.js"
}
}
},
"sub": [
{
"name": "logic",
"type": "typescript",
"parameters": {
"target": "ES6",
"allowUnreachableCode": true,
"input_from_schwamm": {
"path": "lib/plankton/plankton.swm.json",
"group": "logic-decl"
},
"inputs": [
"source/base.ts",
"source/type2.ts"
],
"output": "temp/unlinked.js"
}
}
]
}
]
}
}