Files
z-elements/libs/_internal/directives/project.json

46 lines
1.1 KiB
JSON

{
"name": "_internal-directives",
"$schema": "../../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "libs/_internal/directives/src",
"projectType": "library",
"targets": {
"build": {
"executor": "@nx/js:tsc",
"outputs": [
"{options.outputPath}"
],
"options": {
"outputPath": "dist/libs/_internal/directives",
"main": "libs/_internal/directives/src/index.ts",
"tsConfig": "libs/_internal/directives/tsconfig.lib.json",
"assets": [
"libs/_internal/directives/*.md"
]
}
},
"lint": {
"executor": "@nx/linter:eslint",
"outputs": [
"{options.outputFile}"
],
"options": {
"lintFilePatterns": [
"libs/_internal/directives/**/*.ts",
"libs/_internal/directives/package.json"
]
}
},
"test": {
"executor": "@nx/vite:test",
"outputs": [
"{options.reportsDirectory}"
],
"options": {
"passWithNoTests": true,
"reportsDirectory": "../../../coverage/libs/_internal/directives"
}
}
},
"tags": []
}