vega-frontend-monorepo/libs/ledger/project.json

51 lines
1.3 KiB
JSON
Raw Normal View History

2022-11-04 10:47:39 +00:00
{
"name": "ledger",
2022-11-04 10:47:39 +00:00
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "libs/ledger/src",
"projectType": "library",
"targets": {
"build": {
"executor": "@nx/rollup:rollup",
2022-11-04 10:47:39 +00:00
"outputs": ["{options.outputPath}"],
"options": {
"outputPath": "dist/libs/ledger",
"tsConfig": "libs/ledger/tsconfig.lib.json",
"project": "libs/ledger/package.json",
"entryFile": "libs/ledger/src/index.ts",
"external": ["react/jsx-runtime"],
"rollupConfig": "@nx/react/plugins/bundle-rollup",
2022-11-04 10:47:39 +00:00
"compiler": "babel",
"assets": [
{
"glob": "libs/ledger/README.md",
"input": ".",
"output": "."
}
]
}
},
"lint": {
"executor": "@nx/linter:eslint",
2022-11-04 10:47:39 +00:00
"outputs": ["{options.outputFile}"],
"options": {
"lintFilePatterns": ["libs/ledger/**/*.ts"]
}
},
"test": {
"executor": "@nx/jest:jest",
"outputs": ["{workspaceRoot}/coverage/libs/ledger"],
2022-11-04 10:47:39 +00:00
"options": {
"jestConfig": "libs/ledger/jest.config.ts",
"passWithNoTests": true
},
"configurations": {
"ci": {
"ci": true,
"codeCoverage": true
}
2022-11-04 10:47:39 +00:00
}
}
},
"tags": []
}