nx/typedoc-theme/project.json

29 lines
726 B
JSON

{
"name": "typedoc-theme",
"$schema": "../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "typedoc-theme/src",
"projectType": "library",
"targets": {
"build-base": {
"executor": "@nx/js:tsc",
"outputs": ["{options.outputPath}"],
"options": {
"outputPath": "dist/typedoc-theme",
"main": "typedoc-theme/src/index.ts",
"tsConfig": "typedoc-theme/tsconfig.lib.json",
"assets": ["typedoc-theme/*.md"]
}
},
"build": {
"executor": "nx:run-commands",
"options": {
"outputPath": "dist/typedoc-theme",
"command": "echo 'Building TypeDoc custom theme'"
}
},
"lint": {},
"test": {}
},
"tags": []
}