12345678910111213141516171819202122232425262728293031323334353637 |
- {
- "$schema": "./node_modules/nx/schemas/nx-schema.json",
- "tasksRunnerOptions": {
- "default": {
- "runner": "nx/tasks-runners/default",
- "options": {
- "cacheableOperations": [
- "build",
- "lint",
- "test",
- "e2e"
- ]
- }
- }
- },
- "targetDefaults": {
- "build": {
- "dependsOn": [
- "^build"
- ],
- "inputs": [
- "production",
- "^production"
- ]
- }
- },
- "namedInputs": {
- "default": [
- "{projectRoot}/**/*",
- "sharedGlobals"
- ],
- "production": [
- "default"
- ],
- "sharedGlobals": []
- }
- }
|