type2/type2.prj.json

61 lines
1 KiB
JSON
Raw Normal View History

2016-12-26 17:56:02 +01:00
{
"name": "type2",
"version": "0.0.1",
"dependencies": [
2017-08-11 14:12:03 +02:00
"../plankton/lang/lang.prj.json"
2016-12-26 17:56:02 +01:00
],
"roottask": {
"name": "link",
2017-08-11 14:12:03 +02:00
"type": "schwamm",
2016-12-26 17:56:02 +01:00
"parameters": {
2017-08-11 14:12:03 +02:00
"includes": [
"build/type2.swm.json"
],
"output": {
"dump": {
"logic-impl": "build/type2.js"
}
2016-12-26 17:56:02 +01:00
}
},
"sub": [
{
"name": "build",
2017-08-11 14:12:03 +02:00
"type": "schwamm",
2016-12-26 17:56:02 +01:00
"parameters": {
"includes": [
2017-08-11 14:12:03 +02:00
"../plankton/lang/build/lang.swm.json"
2016-12-26 17:56:02 +01:00
],
2017-08-11 14:12:03 +02:00
"inputs": {
2016-12-26 17:56:02 +01:00
"logic-decl": [
"temp/unlinked-logic-decl.d.ts"
],
"logic-impl": [
"temp/unlinked-logic-impl.js"
]
},
2017-08-11 14:12:03 +02:00
"output": {
"save": "build/type2.swm.json"
}
2016-12-26 17:56:02 +01:00
},
"sub": [
{
"name": "logic",
"type": "typescript",
"parameters": {
2017-08-11 14:12:03 +02:00
"target": "ES6",
2016-12-26 17:56:02 +01:00
"allowUnreachableCode": true,
"inputs": [
"source/base.ts",
"source/type2.ts"
],
"declaration": "temp/unlinked-logic-decl.d.ts",
"output": "temp/unlinked-logic-impl.js"
}
}
]
}
]
}
}