mirror of
https://github.com/twentyhq/twenty
synced 2026-04-21 13:37:22 +00:00
49 lines
1.1 KiB
JSON
49 lines
1.1 KiB
JSON
{
|
|
"name": "fireflies",
|
|
"$schema": "../../../node_modules/nx/schemas/project-schema.json",
|
|
"sourceRoot": "packages/twenty-apps/fireflies/src",
|
|
"projectType": "application",
|
|
"tags": [
|
|
"scope:apps"
|
|
],
|
|
"targets": {
|
|
"test": {
|
|
"executor": "@nx/jest:jest",
|
|
"outputs": [
|
|
"{workspaceRoot}/coverage/{projectRoot}"
|
|
],
|
|
"options": {
|
|
"jestConfig": "packages/twenty-apps/fireflies/jest.config.mjs",
|
|
"passWithNoTests": true
|
|
},
|
|
"configurations": {
|
|
"ci": {
|
|
"ci": true,
|
|
"coverageReporters": ["text"]
|
|
}
|
|
}
|
|
},
|
|
"typecheck": {
|
|
"executor": "nx:run-commands",
|
|
"options": {
|
|
"command": "tsc --noEmit --project {projectRoot}/tsconfig.json"
|
|
}
|
|
},
|
|
"lint": {
|
|
"executor": "@nx/eslint:lint",
|
|
"outputs": [
|
|
"{options.outputFile}"
|
|
],
|
|
"options": {
|
|
"lintFilePatterns": [
|
|
"packages/twenty-apps/fireflies/**/*.{ts,tsx,js,jsx}"
|
|
]
|
|
},
|
|
"configurations": {
|
|
"fix": {
|
|
"fix": true
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|