0
Fork 0
mirror of https://github.com/penpot/penpot-plugins.git synced 2025-01-06 14:50:21 -05:00
penpot-plugins/nx.json

37 lines
750 B
JSON
Raw Normal View History

2024-01-29 06:39:21 -05:00
{
2024-02-01 08:08:51 -05:00
"pluginsConfig": {
"@nx/js": {
"analyzeSourceFiles": true
}
},
2024-01-29 06:39:21 -05:00
"extends": "nx/presets/npm.json",
"$schema": "./node_modules/nx/schemas/nx-schema.json",
"targetDefaults": {
"build": {
"cache": true,
2024-02-01 08:08:51 -05:00
"dependsOn": ["^build"]
2024-01-29 06:39:21 -05:00
},
"lint": {
2024-02-01 08:08:51 -05:00
"cache": true,
"inputs": [
"default",
"{workspaceRoot}/.eslintrc.json",
"{workspaceRoot}/.eslintignore",
"{workspaceRoot}/eslint.config.js"
]
},
"@nx/vite:test": {
"cache": true,
"inputs": ["default", "^default"]
}
},
"generators": {
"@nx/web:application": {
"style": "css",
"linter": "eslint",
"unitTestRunner": "vitest",
"e2eTestRunner": "none"
2024-01-29 06:39:21 -05:00
}
}
}