graphql-engine/frontend/libs/console/legacy-ee/project.json
Nicolas Beaussart 9667164942 frontend: introduce tags system for libs
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/9063
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
GitOrigin-RevId: 1f5918b1e56452967a93739ffc21b4cfafbd84e4
2023-05-09 10:43:51 +00:00

25 lines
719 B
JSON

{
"name": "console-legacy-ee",
"$schema": "../../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "libs/console/legacy-ee/src",
"projectType": "library",
"tags": ["scope:console", "type:feature", "meta:legacy"],
"targets": {
"lint": {
"executor": "@nrwl/linter:eslint",
"outputs": ["{options.outputFile}"],
"options": {
"lintFilePatterns": ["libs/console/legacy-ee/**/*.{ts,tsx,js,jsx,json}"]
}
},
"test": {
"executor": "@nrwl/jest:jest",
"outputs": ["{workspaceRoot}/coverage/libs/console/legacy-ee"],
"options": {
"jestConfig": "libs/console/legacy-ee/jest.config.ts",
"passWithNoTests": true
}
}
}
}