typebot.io/nx.json
Kavita Rawat 9900fc7149
Some checks failed
Create Tag / create-tag (push) Has been cancelled
Deploy Workflows (Fly.io) / deploy (push) Has been cancelled
🐛 Restore automatic dev database sync (#2550)
Restore the automatic Prisma generation and schema push dependencies that were dropped during the Nx migration.
2026-07-10 11:36:53 +02:00

35 lines
625 B
JSON

{
"$schema": "./node_modules/nx/schemas/nx-schema.json",
"tui": {
"enabled": false
},
"plugins": [
{
"plugin": "@nx/js/typescript"
},
{
"plugin": "@nx/next/plugin"
},
{
"plugin": "@nx/vite/plugin"
}
],
"targetDefaults": {
"dev": {
"dependsOn": ["^db:generate", "^db:push"]
},
"@nx/esbuild:esbuild": {
"cache": true,
"dependsOn": ["^build"],
"inputs": ["default", "^default"]
},
"@nx/vitest:test": {
"cache": true,
"inputs": ["default", "^default"]
},
"test": {
"dependsOn": ["^build"]
}
}
}