graphql-engine/frontend/apps/nx/internal-plugin-e2e/project.json

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
776 B
JSON
Raw Normal View History

{
"name": "nx-internal-plugin-e2e",
"$schema": "../../../node_modules/nx/schemas/project-schema.json",
"projectType": "application",
"sourceRoot": "apps/nx/internal-plugin-e2e/src",
"targets": {
"e2e": {
"executor": "@nrwl/nx-plugin:e2e",
"options": {
"target": "nx-internal-plugin:build",
"jestConfig": "apps/nx/internal-plugin-e2e/jest.config.ts"
}
},
"lint": {
"executor": "@nrwl/linter:eslint",
"outputs": ["{options.outputFile}"],
"options": {
"lintFilePatterns": [
"apps/nx/internal-plugin-e2e/**/*.ts",
"apps/nx/internal-plugin-e2e/**/*.json"
]
}
}
},
"tags": ["scope:nx-plugins", "type:e2e"],
"implicitDependencies": ["nx-internal-plugin"]
}