-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.json
More file actions
29 lines (29 loc) · 840 Bytes
/
project.json
File metadata and controls
29 lines (29 loc) · 840 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
{
"name": "nativescript-data",
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "packages/nativescript-data/src",
"projectType": "library",
"tags": [],
"targets": {
"build": {
"executor": "@nx/js:tsc",
"outputs": ["{options.outputPath}"],
"options": {
"outputPath": "dist/packages/nativescript-data",
"main": "packages/nativescript-data/src/index.ts",
"tsConfig": "packages/nativescript-data/tsconfig.lib.json",
"assets": ["packages/nativescript-data/*.md"]
}
},
"lint": {
"executor": "@nx/eslint:lint"
},
"test": {
"executor": "@nx/jest:jest",
"outputs": ["{workspaceRoot}/coverage/{projectRoot}"],
"options": {
"jestConfig": "packages/nativescript-data/jest.config.ts"
}
}
}
}