mirror of
https://github.com/baptisteArno/typebot.io.git
synced 2026-06-05 21:04:43 +08:00
32 lines
557 B
JSON
32 lines
557 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": {
|
|
"@nx/esbuild:esbuild": {
|
|
"cache": true,
|
|
"dependsOn": ["^build"],
|
|
"inputs": ["default", "^default"]
|
|
},
|
|
"@nx/vitest:test": {
|
|
"cache": true,
|
|
"inputs": ["default", "^default"]
|
|
},
|
|
"test": {
|
|
"dependsOn": ["^build"]
|
|
}
|
|
}
|
|
}
|