{ "name": "fireflies", "$schema": "../../../node_modules/nx/schemas/project-schema.json", "sourceRoot": "packages/twenty-apps/fireflies/src", "projectType": "application", "tags": [ "scope:apps" ], "targets": { "test": { "executor": "@nx/jest:jest", "outputs": [ "{workspaceRoot}/coverage/{projectRoot}" ], "options": { "jestConfig": "packages/twenty-apps/fireflies/jest.config.mjs", "passWithNoTests": true }, "configurations": { "ci": { "ci": true, "coverageReporters": ["text"] } } }, "typecheck": { "executor": "nx:run-commands", "options": { "command": "tsc --noEmit --project {projectRoot}/tsconfig.json" } }, "lint": { "executor": "@nx/eslint:lint", "outputs": [ "{options.outputFile}" ], "options": { "lintFilePatterns": [ "packages/twenty-apps/fireflies/**/*.{ts,tsx,js,jsx}" ] }, "configurations": { "fix": { "fix": true } } } } }