2024-01-29 12:39:21 +01:00
|
|
|
{
|
|
|
|
"extends": "nx/presets/npm.json",
|
|
|
|
"$schema": "./node_modules/nx/schemas/nx-schema.json",
|
|
|
|
"targetDefaults": {
|
2024-02-06 09:07:17 +01:00
|
|
|
"@nx/vite:build": {
|
2024-02-01 14:08:51 +01:00
|
|
|
"cache": true,
|
2024-02-06 09:07:17 +01:00
|
|
|
"dependsOn": ["^build"],
|
2024-02-01 14:08:51 +01:00
|
|
|
"inputs": ["default", "^default"]
|
|
|
|
}
|
|
|
|
},
|
2024-02-06 09:07:17 +01:00
|
|
|
"plugins": [
|
|
|
|
{
|
|
|
|
"plugin": "@nx/vite/plugin",
|
|
|
|
"options": {
|
|
|
|
"buildTargetName": "build",
|
|
|
|
"previewTargetName": "preview",
|
|
|
|
"testTargetName": "test",
|
|
|
|
"serveTargetName": "serve",
|
|
|
|
"serveStaticTargetName": "serve-static"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"plugin": "@nx/eslint/plugin",
|
|
|
|
"options": {
|
|
|
|
"targetName": "lint"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"pluginsConfig": {
|
|
|
|
"@nx/js": {
|
|
|
|
"analyzeSourceFiles": true
|
2024-01-29 12:39:21 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|