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

69 lines
1.9 KiB

{
"name": "debugger",
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "apps/debugger/src",
"projectType": "application",
"implicitDependencies": [
"remix-debug"
],
"targets": {
"build": {
"executor": "@nrwl/webpack:webpack",
"outputs": ["{options.outputPath}"],
"defaultConfiguration": "development",
"options": {
"compiler": "babel",
"outputPath": "dist/apps/debugger",
"index": "apps/debugger/src/index.html",
"baseHref": "/",
"main": "apps/debugger/src/main.tsx",
"polyfills": "apps/debugger/src/polyfills.ts",
"tsConfig": "apps/debugger/tsconfig.app.json",
"assets": [
"apps/debugger/src/favicon.ico",
"apps/debugger/src/assets"
],
"styles": ["apps/debugger/src/styles.css"],
"scripts": [],
"webpackConfig": "apps/debugger/webpack.config.js"
},
"configurations": {
"development": {
},
"production": {
"fileReplacements": [
{
"replace": "apps/debugger/src/environments/environment.ts",
"with": "apps/debugger/src/environments/environment.prod.ts"
}
]
}
}
},
"lint": {
"executor": "@nrwl/linter:eslint",
"outputs": ["{options.outputFile}"],
"options": {
"lintFilePatterns": ["apps/debugger/**/*.ts"],
"eslintConfig": "apps/debugger/.eslintrc"
}
},
"serve": {
"executor": "@nrwl/webpack:dev-server",
"defaultConfiguration": "development",
"options": {
"buildTarget": "debugger:build",
"hmr": true
},
"configurations": {
"development": {
"buildTarget": "debugger:build:development"
},
"production": {
"buildTarget": "debugger:build:production"
}
}
}
},
"tags": []
}