You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
70 lines
1.6 KiB
70 lines
1.6 KiB
{
|
|
"name": "ui",
|
|
"$schema": "../../node_modules/nx/schemas/project-schema.json",
|
|
"projectType": "library",
|
|
"generators": {
|
|
"@schematics/angular:component": {
|
|
"style": "scss"
|
|
}
|
|
},
|
|
"sourceRoot": "libs/ui/src",
|
|
"prefix": "gf",
|
|
"targets": {
|
|
"test": {
|
|
"executor": "@nx/jest:jest",
|
|
"outputs": ["{workspaceRoot}/coverage/libs/ui"],
|
|
"options": {
|
|
"jestConfig": "libs/ui/jest.config.ts"
|
|
}
|
|
},
|
|
"lint": {
|
|
"executor": "@nx/eslint:lint",
|
|
"options": {
|
|
"lintFilePatterns": ["libs/ui/src/**/*.ts", "libs/ui/src/**/*.html"]
|
|
}
|
|
},
|
|
"storybook": {
|
|
"executor": "@storybook/angular:start-storybook",
|
|
"options": {
|
|
"port": 4400,
|
|
"configDir": "libs/ui/.storybook",
|
|
"browserTarget": "ui:build-storybook",
|
|
"compodoc": false
|
|
},
|
|
"configurations": {
|
|
"ci": {
|
|
"quiet": true
|
|
}
|
|
}
|
|
},
|
|
"build-storybook": {
|
|
"executor": "@storybook/angular:build-storybook",
|
|
"outputs": ["{options.outputDir}"],
|
|
"options": {
|
|
"outputDir": "dist/storybook/ui",
|
|
"configDir": "libs/ui/.storybook",
|
|
"browserTarget": "ui:build-storybook",
|
|
"compodoc": false
|
|
},
|
|
"configurations": {
|
|
"ci": {
|
|
"quiet": true
|
|
}
|
|
}
|
|
},
|
|
"static-storybook": {
|
|
"executor": "@nx/web:file-server",
|
|
"options": {
|
|
"buildTarget": "ui:build-storybook",
|
|
"staticFilePath": "dist/storybook/ui"
|
|
},
|
|
"configurations": {
|
|
"ci": {
|
|
"buildTarget": "ui:build-storybook:ci"
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"tags": []
|
|
}
|