{ "name": "environment", "$schema": "../../node_modules/nx/schemas/project-schema.json", "sourceRoot": "libs/environment/src", "projectType": "library", "tags": [], "targets": { "lint": { "executor": "@nx/eslint:lint", "outputs": ["{options.outputFile}"], "options": { "lintFilePatterns": ["libs/environment/**/*.{ts,tsx,js,jsx}"] } }, "test": { "executor": "@nx/jest:jest", "outputs": ["{workspaceRoot}/coverage/libs/environment"], "options": { "jestConfig": "libs/environment/jest.config.ts" } }, "build-spec": { "executor": "nx:run-commands", "outputs": [], "options": { "command": "yarn tsc --project ./libs/environment/tsconfig.spec.json" } } } }