mirror of
https://github.com/twentyhq/twenty.git
synced 2024-11-29 19:10:19 +03:00
36 lines
731 B
JSON
36 lines
731 B
JSON
|
{
|
||
|
"name": "twenty-emails",
|
||
|
"$schema": "../../node_modules/nx/schemas/project-schema.json",
|
||
|
"projectType": "library",
|
||
|
"tags": ["scope:backend"],
|
||
|
"targets": {
|
||
|
"build": {
|
||
|
"outputs": ["{options.outputPath}"],
|
||
|
"options": {
|
||
|
"outputPath": "{projectRoot}/dist"
|
||
|
}
|
||
|
},
|
||
|
"typecheck": {},
|
||
|
"lint": {
|
||
|
"options": {
|
||
|
"lintFilePatterns": [
|
||
|
"{projectRoot}/src/**/*.{ts,tsx,json}",
|
||
|
"{projectRoot}/package.json"
|
||
|
],
|
||
|
"reportUnusedDisableDirectives": "error"
|
||
|
},
|
||
|
"configurations": {
|
||
|
"fix": {}
|
||
|
}
|
||
|
},
|
||
|
"fmt": {
|
||
|
"options": {
|
||
|
"files": "src"
|
||
|
},
|
||
|
"configurations": {
|
||
|
"fix": {}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|