element-web/nx.json
Richard van der Hoff 9c09a1b731
Add analytics config to nx (#33175)
* Add `analytics` config to nx

There doesn't seem to be any way to stop nx wanting to add this config setting,
so I think we just have to add it.

* Update nx.json
2026-04-16 15:25:52 +00:00

14 lines
296 B
JSON

{
"$schema": "./node_modules/nx/schemas/nx-schema.json",
"defaultBase": "develop",
"targetDefaults": {
"build": {
"dependsOn": ["^build", "prebuild:*"]
}
},
"namedInputs": {
"src": ["{projectRoot}/src/**/*"]
},
"analytics": false
}