Files
react-test/nx.json

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
445 B
JSON
Raw Permalink Normal View History

2025-12-12 14:26:25 +09:00
{
"$schema": "./node_modules/nx/schemas/nx-schema.json",
"extends": "nx/presets/npm.json",
"targetDefaults": {
"copy-license": {
"cache": true,
"outputs": ["{projectRoot}/LICENSE"]
},
"build": {
"cache": true,
"dependsOn": ["copy-license", "^build"],
"outputs": ["{projectRoot}/build", "{projectRoot}/dist", "{projectRoot}/.next"]
},
"preview": {
"dependsOn": ["^build"]
}
}
}