second commit
Some checks failed
CI / main (push) Failing after 10s

This commit is contained in:
2026-04-07 17:52:18 +02:00
parent 23835e09b3
commit 23fb1ce7ad
12 changed files with 8834 additions and 27 deletions

39
nx.json
View File

@@ -2,15 +2,38 @@
"$schema": "./node_modules/nx/schemas/nx-schema.json",
"analytics": false,
"namedInputs": {
"default": [
"{projectRoot}/**/*",
"sharedGlobals"
],
"default": ["{projectRoot}/**/*", "sharedGlobals"],
"production": [
"default"
"default",
"!{projectRoot}/.eslintrc.json",
"!{projectRoot}/eslint.config.mjs"
],
"sharedGlobals": [
"{workspaceRoot}/.github/workflows/ci.yml"
]
"sharedGlobals": ["{workspaceRoot}/.github/workflows/ci.yml"]
},
"plugins": [
{
"plugin": "@nx/webpack/plugin",
"options": {
"buildTargetName": "build",
"serveTargetName": "serve",
"previewTargetName": "preview",
"buildDepsTargetName": "build-deps",
"watchDepsTargetName": "watch-deps",
"serveStaticTargetName": "serve-static"
}
},
{
"plugin": "@nx/eslint/plugin",
"options": {
"targetName": "lint"
}
}
],
"targetDefaults": {
"@nx/js:tsc": {
"cache": true,
"dependsOn": ["^build"],
"inputs": ["production", "^production"]
}
}
}