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

70 lines
1.8 KiB

{
"name": "solhint",
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "apps/solhint/src",
"projectType": "application",
"implicitDependencies": [],
"targets": {
"build": {
"executor": "@nrwl/webpack:webpack",
"outputs": [
"{options.outputPath}"
],
"dependsOn": ["install"],
"defaultConfiguration": "development",
"options": {
"compiler": "babel",
"outputPath": "dist/apps/solhint",
"index": "apps/solhint/src/index.html",
"baseHref": "./",
"main": "apps/solhint/src/main.tsx",
"tsConfig": "apps/solhint/tsconfig.app.json",
"assets": [
"apps/solhint/src/favicon.ico",
"apps/solhint/src/profile.json"
],
"styles": [],
"webpackConfig": "apps/solhint/webpack.config.js"
},
"configurations": {
"development": {},
"production": {
"fileReplacements": [
{
"replace": "apps/solhint/src/environments/environment.ts",
"with": "apps/solhint/src/environments/environment.prod.ts"
}
]
}
}
},
"install": {
"executor": "nx:run-commands",
"options": {
"commands": [
"cd apps/solhint && yarn"
],
"parallel": false
}
},
"serve": {
"executor": "@nrwl/webpack:dev-server",
"defaultConfiguration": "development",
"options": {
"buildTarget": "solhint:build",
"hmr": true,
"baseHref": "/"
},
"configurations": {
"development": {
"buildTarget": "solhint:build:development",
"port": 7003
},
"production": {
"buildTarget": "solhint:build:production"
}
}
}
},
"tags": []
}