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