mirror of
https://gitee.com/bitdance-team/chrome-extension
synced 2025-01-11 06:08:15 +08:00
34 lines
914 B
JSON
34 lines
914 B
JSON
{
|
|
"root": "packages/services-api",
|
|
"sourceRoot": "packages/services-api/src",
|
|
"projectType": "library",
|
|
"targets": {
|
|
"build": {
|
|
"executor": "@nrwl/js:tsc",
|
|
"outputs": ["{options.outputPath}"],
|
|
"options": {
|
|
"outputPath": "dist/packages/services-api",
|
|
"main": "packages/services-api/src/index.ts",
|
|
"tsConfig": "packages/services-api/tsconfig.lib.json",
|
|
"assets": ["packages/services-api/*.md"]
|
|
}
|
|
},
|
|
"lint": {
|
|
"executor": "@nrwl/linter:eslint",
|
|
"outputs": ["{options.outputFile}"],
|
|
"options": {
|
|
"lintFilePatterns": ["packages/services-api/**/*.ts"]
|
|
}
|
|
},
|
|
"test": {
|
|
"executor": "@nrwl/jest:jest",
|
|
"outputs": ["coverage/packages/services-api"],
|
|
"options": {
|
|
"jestConfig": "packages/services-api/jest.config.js",
|
|
"passWithNoTests": true
|
|
}
|
|
}
|
|
},
|
|
"tags": []
|
|
}
|