nx.json
{
"$schema": "./node_modules/nx/schemas/nx-schema.json",
"npmScope": "hyper-fetch",
"affected": {
"defaultBase": "main"
},
"implicitDependencies": {
"package.json": {
"dependencies": "*",
"devDependencies": "*"
},
".eslintrc.json": "*"
},
"tasksRunnerOptions": {
"default": {
"runner": "nx/tasks-runners/default",
"options": {
"parallel": 1
}
}
},
"targetDefaults": {
"build": {
"dependsOn": ["^build"]
},
"test": {
"inputs": ["default", "^default", "{workspaceRoot}/jest.preset.js"]
}
},
"workspaceLayout": {
"appsDir": "examples",
"libsDir": "packages"
},
"generators": {
"@nrwl/react": {
"application": {
"style": "css",
"linter": "eslint",
"bundler": "vite",
"babel": true
},
"component": {
"style": "css"
},
"library": {
"style": "css",
"linter": "eslint"
}
},
"@nrwl/next": {
"application": {
"style": "css",
"linter": "eslint"
}
}
},
"defaultProject": "reactjs"
}