-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathproject.json
More file actions
24 lines (24 loc) · 780 Bytes
/
Copy pathproject.json
File metadata and controls
24 lines (24 loc) · 780 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
{
"name": "typescript-resolver-files",
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "packages/typescript-resolver-files/src",
"projectType": "library",
"tags": [],
"targets": {
"build": {
"executor": "@nx/js:tsc",
"outputs": ["{options.outputPath}"],
"options": {
"outputPath": "dist/packages/typescript-resolver-files",
"tsConfig": "packages/typescript-resolver-files/tsconfig.lib.json",
"packageJson": "packages/typescript-resolver-files/package.json",
"main": "packages/typescript-resolver-files/src/index.ts",
"assets": ["packages/typescript-resolver-files/README.md"],
"clean": true
}
},
"lint": {
"executor": "@nx/eslint:lint"
}
}
}