-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathproject.json
More file actions
31 lines (31 loc) · 897 Bytes
/
Copy pathproject.json
File metadata and controls
31 lines (31 loc) · 897 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{
"name": "plugin-jsdocs",
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "packages/plugin-jsdocs/src",
"projectType": "library",
"tags": ["scope:plugin", "type:feature", "publishable"],
"targets": {
"build": {
"executor": "@nx/js:tsc",
"outputs": ["{options.outputPath}"],
"options": {
"outputPath": "dist/packages/plugin-jsdocs",
"main": "packages/plugin-jsdocs/src/index.ts",
"tsConfig": "packages/plugin-jsdocs/tsconfig.lib.json",
"assets": ["packages/plugin-jsdocs/*.md"]
}
},
"lint": {
"executor": "@nx/linter:eslint",
"outputs": ["{options.outputFile}"],
"options": {
"lintFilePatterns": [
"packages/plugin-jsdocs/**/*.ts",
"packages/plugin-jsdocs/package.json"
]
}
},
"unit-test": {},
"int-test": {}
}
}