44 lines
876 B
JSON
44 lines
876 B
JSON
{
|
|
"$schema": "./node_modules/nx/schemas/nx-schema.json",
|
|
"npmScope": "toeverything",
|
|
"tasksRunnerOptions": {
|
|
"default": {
|
|
"runner": "nx/tasks-runners/default",
|
|
"options": {
|
|
"cacheableOperations": ["build", "test"]
|
|
}
|
|
}
|
|
},
|
|
"affected": {
|
|
"defaultBase": "master"
|
|
},
|
|
"namedInputs": {
|
|
"default": ["{projectRoot}/**/*", "sharedGlobals"],
|
|
"sharedGlobals": [
|
|
"{workspaceRoot}/tsconfig.json",
|
|
"{workspaceRoot}/nx.json"
|
|
],
|
|
"production": ["default"]
|
|
},
|
|
"targetDefaults": {
|
|
"build": {
|
|
"dependsOn": ["^build"]
|
|
},
|
|
"e2e": {
|
|
"dependsOn": ["^build"]
|
|
},
|
|
"e2e:coverage": {
|
|
"dependsOn": ["^build"]
|
|
},
|
|
"test": {
|
|
"dependsOn": ["^build"]
|
|
},
|
|
"test:ui": {
|
|
"dependsOn": ["^build"]
|
|
},
|
|
"test:coverage": {
|
|
"dependsOn": ["^build"]
|
|
}
|
|
}
|
|
}
|