rnx-kit/nx.json

51 строка
1.2 KiB
JSON

{
"affected": {
"defaultBase": "main"
},
"namedInputs": {
"default": ["{projectRoot}/**/*", "sharedGlobals"],
"sharedGlobals": [
"{workspaceRoot}/.github/workflows/pr.yml",
"{workspaceRoot}/nx.json",
"{workspaceRoot}/packages/eslint-config/*",
"{workspaceRoot}/packages/eslint-plugin/*",
"{workspaceRoot}/packages/jest-preset/*",
"{workspaceRoot}/scripts/tsconfig-esm.json",
"{workspaceRoot}/scripts/tsconfig-shared.json",
"{workspaceRoot}/yarn.lock"
],
"production": ["default"]
},
"targetDefaults": {
"build": {
"dependsOn": ["^build"]
},
"bundle": {
"dependsOn": ["build"]
},
"bundle+esbuild": {
"dependsOn": ["build"]
},
"test": {
"dependsOn": ["build"]
},
"update-readme": {
"dependsOn": ["build"]
}
},
"tasksRunnerOptions": {
"default": {
"runner": "@rnx-kit/scripts/nx-tasks-runner",
"options": {
"cacheableOperations": ["build", "build:ci", "format", "lint", "test"],
"parallel": 0
}
}
},
"pluginsConfig": {
"@nrwl/js": {
"analyzeSourceFiles": false
}
}
}