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.
41 lines
977 B
41 lines
977 B
1 year ago
|
{
|
||
|
"name": "ui-modules",
|
||
|
"$schema": "../node_modules/nx/schemas/project-schema.json",
|
||
|
"sourceRoot": "ui-modules/src",
|
||
|
"projectType": "library",
|
||
|
"tags": [],
|
||
|
"targets": {
|
||
|
"lint": {
|
||
|
"executor": "@nx/linter:eslint",
|
||
|
"outputs": ["{options.outputFile}"],
|
||
|
"options": {
|
||
|
"lintFilePatterns": ["ui-modules/**/*.{ts,tsx,js,jsx}"]
|
||
|
}
|
||
|
},
|
||
|
"build": {
|
||
|
"executor": "@nx/vite:build",
|
||
|
"outputs": ["{options.outputPath}"],
|
||
|
"defaultConfiguration": "production",
|
||
|
"options": {
|
||
|
"outputPath": "dist/ui-modules"
|
||
|
},
|
||
|
"configurations": {
|
||
|
"development": {
|
||
|
"mode": "development"
|
||
|
},
|
||
|
"production": {
|
||
|
"mode": "production"
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
"test": {
|
||
|
"executor": "@nx/vite:test",
|
||
|
"outputs": ["{options.reportsDirectory}"],
|
||
|
"options": {
|
||
|
"passWithNoTests": true,
|
||
|
"reportsDirectory": "../coverage/ui-modules"
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|