Files
AFFiNE-Mirror/nx.json
T
2023-06-15 01:11:48 +08:00

48 lines
942 B
JSON

{
"$schema": "./node_modules/nx/schemas/nx-schema.json",
"npmScope": "toeverything",
"tasksRunnerOptions": {
"default": {
"runner": "nx/tasks-runners/default",
"options": {
"cacheableOperations": ["build", "test"]
}
}
},
"affected": {
"defaultBase": "master"
},
"implicitDependencies": {
"package.json": {
"dependencies": "*",
"devDependencies": "*"
},
"tsconfig.json": "*",
"nx.json": "*"
},
"namedInputs": {
"default": ["{projectRoot}/**/*"],
"production": ["!{projectRoot}/**/*.spec.tsx"]
},
"targetDefaults": {
"build": {
"dependsOn": ["^build"]
},
"e2e": {
"dependsOn": ["^build"]
},
"e2e:coverage": {
"dependsOn": ["^build"]
},
"test": {
"dependsOn": ["^build"]
},
"test:ui": {
"dependsOn": ["^build"]
},
"test:coverage": {
"dependsOn": ["^build"]
}
}
}