-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathproject.json
More file actions
32 lines (32 loc) · 969 Bytes
/
project.json
File metadata and controls
32 lines (32 loc) · 969 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
32
{
"name": "plugin-eslint",
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "packages/plugin-eslint/src",
"projectType": "library",
"targets": {
"build": {
"executor": "@nx/js:tsc",
"outputs": ["{options.outputPath}"],
"options": {
"outputPath": "dist/packages/plugin-eslint",
"main": "packages/plugin-eslint/src/index.ts",
"tsConfig": "packages/plugin-eslint/tsconfig.lib.json",
"assets": ["packages/plugin-eslint/*.md"],
"additionalEntryPoints": ["packages/plugin-eslint/src/bin.ts"]
}
},
"lint": {
"executor": "@nx/linter:eslint",
"outputs": ["{options.outputFile}"],
"options": {
"lintFilePatterns": [
"packages/plugin-eslint/**/*.ts",
"packages/plugin-eslint/package.json"
]
}
},
"unit-test": {},
"int-test": {}
},
"tags": ["scope:plugin", "type:feature", "publishable"]
}