2023-04-27 19:56:10 +03:00
|
|
|
{
|
|
|
|
"$schema": "./node_modules/nx/schemas/nx-schema.json",
|
|
|
|
"npmScope": "fxa",
|
|
|
|
"tasksRunnerOptions": {
|
|
|
|
"default": {
|
2023-07-12 00:36:22 +03:00
|
|
|
"runner": "nx-cloud",
|
2023-04-27 19:56:10 +03:00
|
|
|
"options": {
|
2023-06-01 23:21:44 +03:00
|
|
|
"cacheableOperations": [
|
|
|
|
"build",
|
|
|
|
"lint",
|
|
|
|
"test",
|
|
|
|
"test-unit",
|
|
|
|
"test-integration",
|
|
|
|
"e2e"
|
2023-07-12 00:36:22 +03:00
|
|
|
],
|
|
|
|
"accessToken": "YzRhMzhiNjEtODE0OS00Njg1LTg2NDktMGJlZjBjNmJjMTc1fHJlYWQtb25seQ=="
|
2023-04-27 19:56:10 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"targetDefaults": {
|
|
|
|
"build": {
|
2023-07-18 15:54:28 +03:00
|
|
|
"dependsOn": ["^build"],
|
|
|
|
"inputs": ["production", "^production"]
|
2023-04-27 19:56:10 +03:00
|
|
|
},
|
|
|
|
"lint": {
|
2023-07-18 15:54:28 +03:00
|
|
|
"inputs": ["default", "{workspaceRoot}/.eslintrc.json"]
|
2023-04-27 19:56:10 +03:00
|
|
|
},
|
|
|
|
"test": {
|
2023-07-18 15:54:28 +03:00
|
|
|
"inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"]
|
2023-04-27 19:56:10 +03:00
|
|
|
}
|
|
|
|
},
|
|
|
|
"namedInputs": {
|
2023-07-18 15:54:28 +03:00
|
|
|
"default": ["{projectRoot}/**/*", "sharedGlobals"],
|
2023-04-27 19:56:10 +03:00
|
|
|
"production": [
|
|
|
|
"default",
|
|
|
|
"!{projectRoot}/.eslintrc.json",
|
|
|
|
"!{projectRoot}/**/?(*.)+(spec|test).[jt]s?(x)?(.snap)",
|
|
|
|
"!{projectRoot}/tsconfig.spec.json",
|
|
|
|
"!{projectRoot}/jest.config.[jt]s"
|
|
|
|
],
|
|
|
|
"sharedGlobals": []
|
|
|
|
},
|
|
|
|
"cli": {
|
|
|
|
"packageManager": "yarn"
|
|
|
|
},
|
|
|
|
"workspaceLayout": {
|
|
|
|
"appsDir": "apps",
|
|
|
|
"libsDir": "libs"
|
2023-06-14 21:42:07 +03:00
|
|
|
},
|
|
|
|
"generators": {
|
|
|
|
"@nx/react": {
|
|
|
|
"application": {
|
|
|
|
"babel": true
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"@nx/next": {
|
|
|
|
"application": {
|
|
|
|
"style": "none",
|
|
|
|
"linter": "eslint"
|
|
|
|
}
|
|
|
|
}
|
2023-04-27 19:56:10 +03:00
|
|
|
}
|
|
|
|
}
|