hyperdx/nx.json

42 lines
798 B
JSON
Raw Normal View History

2023-09-13 03:08:05 +00:00
{
"affected": {
"defaultBase": "main"
},
"workspaceLayout": {
"appsDir": "packages",
"libsDir": "packages"
},
"targetDefaults": {
"build": {
2025-08-18 17:16:05 +00:00
"dependsOn": [
"^build"
]
2023-09-13 03:08:05 +00:00
}
},
"tasksRunnerOptions": {
"default": {
"runner": "nx/tasks-runners/default",
"options": {
2025-08-18 17:16:05 +00:00
"cacheableOperations": [
"build",
"lint",
"test"
]
2023-09-13 03:08:05 +00:00
}
}
2025-08-18 17:16:05 +00:00
},
"namedInputs": {
"default": [
"{projectRoot}/**/*",
"sharedGlobals"
],
"production": [
"default",
"!{projectRoot}/**/?(*.)+(spec|test).[jt]s?(x)?(.snap)",
"!{projectRoot}/tsconfig.spec.json",
"!{projectRoot}/jest.config.[jt]s",
"!{projectRoot}/.eslintrc.json"
],
"sharedGlobals": []
2023-09-13 03:08:05 +00:00
}
2025-08-18 17:16:05 +00:00
}