Create Libraries and basic tooltip
This commit is contained in:
45
libs/_internal/controllers/project.json
Normal file
45
libs/_internal/controllers/project.json
Normal file
@@ -0,0 +1,45 @@
|
||||
{
|
||||
"name": "_internal-controllers",
|
||||
"$schema": "../../../node_modules/nx/schemas/project-schema.json",
|
||||
"sourceRoot": "libs/_internal/controllers/src",
|
||||
"projectType": "library",
|
||||
"targets": {
|
||||
"build": {
|
||||
"executor": "@nx/js:tsc",
|
||||
"outputs": [
|
||||
"{options.outputPath}"
|
||||
],
|
||||
"options": {
|
||||
"outputPath": "dist/libs/_internal/controllers",
|
||||
"main": "libs/_internal/controllers/src/index.ts",
|
||||
"tsConfig": "libs/_internal/controllers/tsconfig.lib.json",
|
||||
"assets": [
|
||||
"libs/_internal/controllers/*.md"
|
||||
]
|
||||
}
|
||||
},
|
||||
"lint": {
|
||||
"executor": "@nx/linter:eslint",
|
||||
"outputs": [
|
||||
"{options.outputFile}"
|
||||
],
|
||||
"options": {
|
||||
"lintFilePatterns": [
|
||||
"libs/_internal/controllers/**/*.ts",
|
||||
"libs/_internal/controllers/package.json"
|
||||
]
|
||||
}
|
||||
},
|
||||
"test": {
|
||||
"executor": "@nx/vite:test",
|
||||
"outputs": [
|
||||
"{options.reportsDirectory}"
|
||||
],
|
||||
"options": {
|
||||
"passWithNoTests": true,
|
||||
"reportsDirectory": "../../../coverage/libs/_internal/controllers"
|
||||
}
|
||||
}
|
||||
},
|
||||
"tags": []
|
||||
}
|
||||
Reference in New Issue
Block a user