42 lines
1023 B
JSON
42 lines
1023 B
JSON
{
|
|
"name": "i18n",
|
|
"$schema": "../../node_modules/nx/schemas/project-schema.json",
|
|
"sourceRoot": "libs/i18n/src",
|
|
"projectType": "library",
|
|
"targets": {
|
|
"build": {
|
|
"executor": "@nx/js:tsc",
|
|
"outputs": ["{options.outputPath}"],
|
|
"format": ["esm", "cjs"],
|
|
"options": {
|
|
"outputPath": "dist/libs/i18n",
|
|
"main": "libs/i18n/src/index.ts",
|
|
"tsConfig": "libs/i18n/tsconfig.lib.json",
|
|
"assets": ["libs/i18n/*.md"]
|
|
}
|
|
},
|
|
"lint": {
|
|
"executor": "@nx/linter:eslint",
|
|
"outputs": ["{options.outputFile}"],
|
|
"options": {
|
|
"lintFilePatterns": ["libs/i18n/**/*.ts"]
|
|
}
|
|
},
|
|
"test": {
|
|
"executor": "@nx/jest:jest",
|
|
"outputs": ["{workspaceRoot}/coverage/libs/i18n"],
|
|
"options": {
|
|
"jestConfig": "libs/i18n/jest.config.ts",
|
|
"passWithNoTests": true
|
|
},
|
|
"configurations": {
|
|
"ci": {
|
|
"ci": true,
|
|
"codeCoverage": true
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"tags": []
|
|
}
|