Added project.json config file

pull/3274/head
ioedeveloper 2 years ago committed by Aniket
parent 8b8db98df4
commit 03a05ad699
  1. 30
      libs/ghaction-helper/project.json

@ -0,0 +1,30 @@
{
"name": "ghaction-helper",
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "libs/ghaction-helper/src",
"projectType": "library",
"implicitDependencies": [
"remix-solidity"
],
"targets": {
"build": {
"executor": "@nrwl/js:tsc",
"outputs": ["{options.outputPath}"],
"options": {
"outputPath": "dist/libs/ghaction-helper",
"main": "libs/ghaction-helper/src/index.ts",
"tsConfig": "libs/ghaction-helper/tsconfig.lib.json",
"assets": []
}
},
"lint": {
"executor": "@nrwl/linter:eslint",
"outputs": ["{options.outputFile}"],
"options": {
"lintFilePatterns": ["libs/ghaction-helper/**/*.ts"]
}
}
},
"tags": []
}
Loading…
Cancel
Save