43 строки
955 B
JSON
43 строки
955 B
JSON
{
|
|
"extends": "nx/presets/npm.json",
|
|
"$schema": "./node_modules/nx/schemas/nx-schema.json",
|
|
"plugins": [
|
|
{
|
|
"plugin": "@nx/eslint/plugin",
|
|
"options": {
|
|
"targetName": "lint"
|
|
}
|
|
},
|
|
{
|
|
"plugin": "@nx/vite/plugin",
|
|
"options": {
|
|
"buildTargetName": "build",
|
|
"testTargetName": "test",
|
|
"serveTargetName": "serve",
|
|
"previewTargetName": "preview",
|
|
"serveStaticTargetName": "serve-static"
|
|
}
|
|
},
|
|
{
|
|
"plugin": "@nx/storybook/plugin",
|
|
"options": {
|
|
"serveStorybookTargetName": "storybook",
|
|
"buildStorybookTargetName": "build-storybook",
|
|
"testStorybookTargetName": "test-storybook",
|
|
"staticStorybookTargetName": "static-storybook"
|
|
}
|
|
},
|
|
{
|
|
"plugin": "@nx/jest/plugin",
|
|
"options": {
|
|
"targetName": "test"
|
|
}
|
|
}
|
|
],
|
|
"generators": {
|
|
"@nx/react": {
|
|
"library": {}
|
|
}
|
|
}
|
|
}
|