39 lines
1021 B
JSON
39 lines
1021 B
JSON
{
|
|
"name": "waku-utils",
|
|
"$schema": "../../node_modules/nx/schemas/project-schema.json",
|
|
"sourceRoot": "libs/waku-utils/src",
|
|
"projectType": "library",
|
|
"targets": {
|
|
"tsc": {
|
|
"executor": "@nx/js:tsc",
|
|
"outputs": ["{options.outputPath}"],
|
|
"options": {
|
|
"outputPath": "libs/waku-utils/dist/",
|
|
"main": "libs/waku-utils/src/index.ts",
|
|
"tsConfig": "libs/waku-utils/tsconfig.lib.json",
|
|
"assets": ["libs/waku-utils/*.md"],
|
|
"rootDir": "libs/waku-utils/src"
|
|
}
|
|
},
|
|
"build": {
|
|
"executor": "nx:run-commands",
|
|
"dependsOn": ["tsc"],
|
|
"options": {
|
|
"command": "rm -rf libs/waku-utils/dist/package.json"
|
|
}
|
|
},
|
|
"lint": {
|
|
"executor": "@nx/eslint:lint",
|
|
"outputs": ["{options.outputFile}"]
|
|
},
|
|
"test": {
|
|
"executor": "@nx/vite:test",
|
|
"outputs": ["{options.reportsDirectory}"],
|
|
"options": {
|
|
"reportsDirectory": "../../coverage/libs/waku-utils"
|
|
}
|
|
}
|
|
},
|
|
"tags": []
|
|
}
|