Files
vercel__eve/turbo.json
T
2026-07-15 09:21:32 -04:00

141 lines
2.9 KiB
JSON

{
"$schema": "https://turborepo.com/schema.json",
"envMode": "strict",
"globalDependencies": [".nvmrc", "pnpm-workspace.yaml", "tsconfig.json"],
"tasks": {
"build": {
"dependsOn": ["^build"],
"env": ["VERCEL"],
"inputs": [
"$TURBO_DEFAULT$",
"!.eve/**",
"!.next/**",
"!.nuxt/**",
"!.output/**",
"!.svelte-kit/**",
"!.turbo/**",
"!node_modules/**"
],
"outputs": ["dist/**", ".next/**", "!.next/cache/**", ".output/**", ".vercel/output/**"]
},
"build:types": {
"dependsOn": ["^build:types"],
"inputs": [
"**/*.ts",
"**/*.tsx",
"**/*.cts",
"**/*.mts",
"**/*.d.ts",
"tsconfig*.json",
"package.json",
"!.eve/**",
"!.next/**",
"!.nuxt/**",
"!.output/**",
"!.svelte-kit/**",
"!.turbo/**",
"!node_modules/**"
],
"outputs": ["dist/**/*.d.ts", "dist/**/*.d.ts.map"]
},
"dev": {
"cache": false,
"persistent": true
},
"test": {
"cache": false,
"inputs": [
"$TURBO_DEFAULT$",
"!.eve/**",
"!.next/**",
"!.nuxt/**",
"!.output/**",
"!.svelte-kit/**",
"!.turbo/**",
"!node_modules/**"
],
"outputs": []
},
"test:e2e": {
"cache": false,
"inputs": [
"$TURBO_DEFAULT$",
"!.eve/**",
"!.next/**",
"!.nuxt/**",
"!.output/**",
"!.svelte-kit/**",
"!.turbo/**",
"!node_modules/**"
],
"outputs": []
},
"test:integration": {
"cache": false,
"inputs": [
"$TURBO_DEFAULT$",
"!.eve/**",
"!.next/**",
"!.nuxt/**",
"!.output/**",
"!.svelte-kit/**",
"!.turbo/**",
"!node_modules/**"
],
"outputs": []
},
"test:scenario": {
"cache": false,
"inputs": [
"$TURBO_DEFAULT$",
"!.eve/**",
"!.next/**",
"!.nuxt/**",
"!.output/**",
"!.svelte-kit/**",
"!.turbo/**",
"!node_modules/**"
],
"outputs": []
},
"test:unit": {
"cache": false,
"inputs": [
"$TURBO_DEFAULT$",
"!.eve/**",
"!.next/**",
"!.nuxt/**",
"!.output/**",
"!.svelte-kit/**",
"!.turbo/**",
"!node_modules/**"
],
"outputs": []
},
"typecheck": {
"dependsOn": ["^build"],
"inputs": [
"**/*.ts",
"**/*.tsx",
"**/*.cts",
"**/*.mts",
"**/*.d.ts",
"**/*.js",
"**/*.mjs",
"**/*.cjs",
"**/*.jsx",
"tsconfig*.json",
"package.json",
"!.eve/**",
"!.next/**",
"!.nuxt/**",
"!.output/**",
"!.svelte-kit/**",
"!.turbo/**",
"!node_modules/**"
],
"outputs": []
}
}
}