nx/packages/jest/project.json

57 lines
1.4 KiB
JSON

{
"name": "jest",
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "packages/jest",
"projectType": "library",
"targets": {
"test": {},
"build-base": {
"executor": "@nrwl/js:tsc",
"options": {
"assets": [
{
"input": "packages/jest",
"glob": "**/@(files|files-angular)/**",
"output": "/"
},
{
"input": "packages/jest",
"glob": "**/files/**/.gitkeep",
"output": "/"
},
{
"input": "packages/jest",
"glob": "**/*.json",
"ignore": ["**/tsconfig*.json", "project.json", ".eslintrc.json"],
"output": "/"
},
{
"input": "packages/jest",
"glob": "**/*.js",
"ignore": ["**/jest.config.js"],
"output": "/"
},
{
"input": "packages/jest",
"glob": "**/*.d.ts",
"output": "/"
},
{
"input": "",
"glob": "LICENSE",
"output": "/"
}
]
}
},
"build": {
"executor": "nx:run-commands",
"outputs": ["{workspaceRoot}/build/packages/jest"],
"options": {
"command": "node ./scripts/copy-readme.js jest"
}
},
"lint": {}
}
}