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