b3014bb98a
Co-authored-by: Edd <edd@vega.xyz>
31 lines
792 B
JSON
31 lines
792 B
JSON
{
|
|
"name": "network-info",
|
|
"$schema": "../../node_modules/nx/schemas/project-schema.json",
|
|
"sourceRoot": "libs/network-info/src",
|
|
"projectType": "library",
|
|
"tags": [],
|
|
"targets": {
|
|
"lint": {
|
|
"executor": "@nx/eslint:lint",
|
|
"outputs": ["{options.outputFile}"],
|
|
"options": {
|
|
"lintFilePatterns": ["libs/network-info/**/*.{ts,tsx,js,jsx}"]
|
|
}
|
|
},
|
|
"test": {
|
|
"executor": "@nx/jest:jest",
|
|
"outputs": ["{workspaceRoot}/coverage/libs/network-info"],
|
|
"options": {
|
|
"jestConfig": "libs/network-info/jest.config.ts"
|
|
}
|
|
},
|
|
"build-spec": {
|
|
"executor": "nx:run-commands",
|
|
"outputs": [],
|
|
"options": {
|
|
"command": "yarn tsc --project ./libs/network-info/tsconfig.spec.json"
|
|
}
|
|
}
|
|
}
|
|
}
|