feat(monorepo): initial setup

This commit is contained in:
Nathan Walker
2020-07-12 19:08:49 -07:00
parent 3e02a4b9c7
commit 38f1b1f3cd
3153 changed files with 13400 additions and 25832 deletions

View File

@@ -0,0 +1,66 @@
{
"type": "object",
"properties": {
"androidNdkPath": {
"type": "string"
},
"angular": {
"type": "boolean",
"default": false
},
"chunk": {
"type": "string"
},
"chunks": {
"type": "array",
"items": {
"type": "string"
}
},
"projectRoot": {
"type": "string"
},
"webpackConfig": {
"type": "object"
},
"targetArchs": {
"type": "array",
"items": {
"type": "string",
"enum": [
"arm",
"arm64",
"ia32",
"ia64"
]
}
},
"useLibs": {
"type": "boolean",
"default": false
},
"snapshotInDocker": {
"type": "boolean"
},
"skipSnapshotTools": {
"type": "boolean",
"default": false
},
"v8Version": {
"type": "string"
},
"requireModules": {
"type": "array",
"default": []
},
"includeApplicationCss": {
"type": "boolean",
"default": true
}
},
"required": [
"projectRoot",
"webpackConfig"
],
"additionalProperties": false
}