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