nx/typedoc-theme/project.json
James Henry 98ffe8574b feat(linter): support eslint v8 (#7800)
* feat(core): support eslint v8

* fix(core): align version of eslint across all packages
2021-11-19 14:55:33 -05:00

41 lines
1.0 KiB
JSON

{
"root": "typedoc-theme",
"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": "@nrwl/workspace: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": ["coverage/typedoc-theme"],
"options": {
"jestConfig": "typedoc-theme/jest.config.js",
"passWithNoTests": true
}
}
},
"tags": []
}