rnx-kit/nx.json

56 строки
1.2 KiB
JSON
Исходник Постоянная ссылка Обычный вид История

2022-06-01 00:43:39 +03:00
{
"defaultBase": "main",
2022-10-24 12:49:08 +03:00
"namedInputs": {
"default": ["{projectRoot}/**/*", "sharedGlobals"],
"sharedGlobals": [
2023-08-29 12:03:37 +03:00
"{workspaceRoot}/.github/workflows/pr.yml",
"{workspaceRoot}/nx.json",
2022-10-24 12:49:08 +03:00
"{workspaceRoot}/packages/eslint-config/*",
"{workspaceRoot}/packages/eslint-plugin/*",
"{workspaceRoot}/packages/jest-preset/*",
"{workspaceRoot}/scripts/tsconfig-esm.json",
"{workspaceRoot}/scripts/tsconfig-shared.json",
2022-10-24 12:49:08 +03:00
"{workspaceRoot}/yarn.lock"
],
"production": ["default"]
},
"targetDefaults": {
"build": {
"dependsOn": ["^build", "clean", "depcheck", "lint"],
2023-10-31 19:25:51 +03:00
"cache": true
},
"build:ci": {
"cache": true
},
"bundle": {
"dependsOn": ["build"]
},
"bundle+esbuild": {
"dependsOn": ["build"]
},
2023-10-31 19:25:51 +03:00
"format": {
"cache": true
},
"lint": {
"cache": true
},
"test": {
2023-10-31 19:25:51 +03:00
"dependsOn": ["build"],
"cache": true
}
},
2022-06-01 00:43:39 +03:00
"tasksRunnerOptions": {
"default": {
"runner": "./scripts/nx-tasks-runner.cjs",
2022-06-01 00:43:39 +03:00
"options": {
"parallel": 0
}
}
},
"pluginsConfig": {
2023-10-31 19:25:51 +03:00
"@nx/js": {
2022-06-01 00:43:39 +03:00
"analyzeSourceFiles": false
}
}
}