nx/typedoc-theme/project.json
2022-11-08 13:12:31 -05:00

42 lines
1.1 KiB
JSON

{
"name": "typedoc-theme",
"$schema": "../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "typedoc-theme/src",
"projectType": "library",
"targets": {
"build-base": {
"executor": "@nrwl/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": {
"executor": "@nrwl/linter:eslint",
"options": {
"lintFilePatterns": ["typedoc-theme/**/*.ts"]
},
"outputs": ["{options.outputFile}"]
},
"test": {
"executor": "@nrwl/jest:jest",
"outputs": ["{workspaceRoot}/coverage/typedoc-theme"],
"options": {
"jestConfig": "typedoc-theme/jest.config.ts",
"passWithNoTests": true
}
}
},
"tags": []
}