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

60 lines
1.5 KiB

{
"name": "doc-gen",
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "apps/doc-gen/src",
"projectType": "application",
"implicitDependencies": [
],
"targets": {
"build": {
"executor": "@nrwl/webpack:webpack",
"outputs": ["{options.outputPath}"],
"defaultConfiguration": "development",
"options": {
"compiler": "babel",
"outputPath": "dist/apps/doc-gen",
"index": "apps/doc-gen/src/index.html",
2 years ago
"baseHref": "./",
"main": "apps/doc-gen/src/main.tsx",
"tsConfig": "apps/doc-gen/tsconfig.app.json",
"assets": [
"apps/doc-gen/src/favicon.ico"
],
"styles": [],
"scripts": [],
"webpackConfig": "apps/doc-gen/webpack.config.js"
},
"configurations": {
"development": {
},
"production": {
"fileReplacements": [
{
"replace": "apps/doc-gen/src/environments/environment.ts",
"with": "apps/doc-gen/src/environments/environment.prod.ts"
}
]
}
}
},
"serve": {
"executor": "@nrwl/webpack:dev-server",
"defaultConfiguration": "development",
"options": {
"buildTarget": "doc-gen:build",
"hmr": true
},
"configurations": {
"development": {
"buildTarget": "doc-gen:build:development",
"port": 6003
},
"production": {
"buildTarget": "doc-gen:build:production"
}
}
}
},
"tags": []
}