577ba28ae5
* chore: fix trading app e2e tests and mocks * chore: fix e2e build target setup and tsconfigs
36 lines
912 B
JSON
36 lines
912 B
JSON
{
|
|
"root": "apps/console-lite-e2e",
|
|
"sourceRoot": "apps/console-lite-e2e/src",
|
|
"projectType": "application",
|
|
"targets": {
|
|
"e2e": {
|
|
"executor": "@nrwl/cypress:cypress",
|
|
"options": {
|
|
"cypressConfig": "apps/console-lite-e2e/cypress.config.js",
|
|
"devServerTarget": "console-lite:serve"
|
|
},
|
|
"configurations": {
|
|
"production": {
|
|
"devServerTarget": "console-lite:serve:production"
|
|
}
|
|
}
|
|
},
|
|
"lint": {
|
|
"executor": "@nrwl/linter:eslint",
|
|
"outputs": ["{options.outputFile}"],
|
|
"options": {
|
|
"lintFilePatterns": ["apps/console-lite-e2e/**/*.{js,ts}"]
|
|
}
|
|
},
|
|
"build": {
|
|
"executor": "@nrwl/workspace:run-commands",
|
|
"outputs": [],
|
|
"options": {
|
|
"command": "yarn tsc --project ./apps/console-lite-e2e/"
|
|
}
|
|
}
|
|
},
|
|
"tags": [],
|
|
"implicitDependencies": ["console-lite"]
|
|
}
|