remix-project mirror
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
remix-project/libs/remix-analyzer/project.json

35 lines
1004 B

{
"name": "remix-analyzer",
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "libs/remix-analyzer/src",
"projectType": "library",
"implicitDependencies": [
"remix-astwalker",
"remix-lib"
],
"targets": {
"build": {
"executor": "@nrwl/js:tsc",
"outputs": ["{options.outputPath}"],
"options": {
"outputPath": "dist/libs/remix-analyzer",
"main": "libs/remix-analyzer/src/index.ts",
"tsConfig": "libs/remix-analyzer/tsconfig.lib.json",
"assets": [
"libs/remix-analyzer/*.md"
],
"updateBuildableProjectDepsInPackageJson": false
}
},
"lint": {
"executor": "@nrwl/linter:eslint",
"outputs": ["{options.outputFile}"],
"options": {
"lintFilePatterns": ["libs/remix-analyzer/**/*.ts"],
"eslintConfig": "libs/remix-analyzer/.eslintrc"
}
}
},
"tags": []
}