{
  "name": "nextjs-mf",
  "$schema": "../../node_modules/nx/schemas/project-schema.json",
  "sourceRoot": "packages/nextjs-mf/src",
  "projectType": "library",
  "tags": ["type:pkg"],
  "targets": {
    "build": {
      "executor": "@nx/js:tsc",
      "outputs": ["{options.outputPath}"],
      "options": {
        "outputPath": "packages/nextjs-mf/dist",
        "main": "packages/nextjs-mf/src/index.ts",
        "tsConfig": "packages/nextjs-mf/tsconfig.lib.json",
        "assets": ["packages/nextjs-mf/*.md"]
      },
      "dependsOn": [
        {
          "target": "build",
          "dependencies": true
        }
      ]
    },
    "lint": {
      "executor": "@nx/eslint:lint",
      "outputs": ["{options.outputFile}"],
      "options": {
        "lintFilePatterns": [
          "packages/nextjs-mf/**/*.js",
          "packages/nextjs-mf/**/*.ts"
        ]
      }
    },
    "test": {
      "executor": "@nx/jest:jest",
      "outputs": ["{workspaceRoot}/coverage/packages/nextjs-mf"],
      "options": {
        "jestConfig": "packages/nextjs-mf/jest.config.js",
        "passWithNoTests": true
      }
    },
    "pre-release": {
      "executor": "nx:run-commands",
      "options": {
        "parallel": false,
        "commands": [
          {
            "command": "nx run nextjs-mf:test",
            "forwardAllArgs": false
          },
          {
            "command": "nx run nextjs-mf:build",
            "forwardAllArgs": false
          },
          {
            "command": "rm ./packages/nextjs-mf/dist/package.json",
            "forwardAllArgs": false
          }
        ]
      }
    }
  }
}
