Skip to content

Commit

Permalink
fix: Lint libs/batch
Browse files Browse the repository at this point in the history
  • Loading branch information
fahimalizain committed Dec 16, 2023
1 parent 0090f7a commit a332845
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions libs/batch/project.json
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
{
"name": "batch",
"$schema": "../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "batch/src",
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "libs/batch/src",
"projectType": "library",
"targets": {
"build": {
"executor": "@nx/js:tsc",
"outputs": ["{options.outputPath}"],
"options": {
"outputPath": "dist/batch",
"main": "batch/src/index.ts",
"tsConfig": "batch/tsconfig.lib.json",
"assets": ["batch/*.md"]
"outputPath": "dist/libs/batch",
"main": "libs/batch/src/index.ts",
"tsConfig": "libs/batch/tsconfig.lib.json",
"assets": ["libs/batch/*.md"]
}
},
"lint": {
"executor": "@nx/eslint:lint",
"outputs": ["{options.outputFile}"],
"options": {
"lintFilePatterns": ["batch/**/*.ts", "batch/package.json"]
"lintFilePatterns": ["libs/batch/**/*.ts", "libs/batch/package.json"]
}
}
},
Expand Down

0 comments on commit a332845

Please sign in to comment.