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