|
123456789101112131415161718192021222324252627282930 |
- {
- "extends": "nx/presets/npm.json",
- "tasksRunnerOptions": {
- "default": {
- "runner": "nx/tasks-runners/default",
- "options": {
- "cacheableOperations": [
- "prepublishOnly",
- "build",
- "type-check",
- "lint",
- "clean",
- "watch",
- "dev",
- "test"
- ]
- }
- }
- },
- "targetDefaults": {
- "build": {
- "dependsOn": [
- "^build"
- ]
- }
- },
- "affected": {
- "defaultBase": "master"
- }
- }
|