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-tests/project.json

50 lines
1.2 KiB

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