{ "name": "proposals", "$schema": "../../node_modules/nx/schemas/project-schema.json", "sourceRoot": "libs/proposals/src", "projectType": "library", "tags": [], "targets": { "build": { "executor": "@nx/rollup:rollup", "outputs": ["{options.outputPath}"], "options": { "outputPath": "dist/libs/proposals", "tsConfig": "libs/proposals/tsconfig.lib.json", "project": "libs/proposals/package.json", "entryFile": "libs/proposals/src/index.ts", "external": ["react/jsx-runtime"], "rollupConfig": "@nx/react/plugins/bundle-rollup", "compiler": "babel", "assets": [ { "glob": "libs/proposals/README.md", "input": ".", "output": "." } ] } }, "lint": { "executor": "@nx/linter:eslint", "outputs": ["{options.outputFile}"], "options": { "lintFilePatterns": ["libs/proposals/**/*.{ts,tsx,js,jsx}"] } }, "test": { "executor": "@nx/jest:jest", "outputs": ["{workspaceRoot}/coverage/libs/proposals"], "options": { "jestConfig": "libs/proposals/jest.config.ts", "passWithNoTests": true } }, "build-spec": { "executor": "nx:run-commands", "outputs": [], "options": { "command": "yarn tsc --project ./libs/proposals/tsconfig.spec.json" } } } }