42 lines
997 B
JSON
42 lines
997 B
JSON
{
|
|
"$schema": "https://turbo.build/schema.json",
|
|
"globalDotEnv": [".env"],
|
|
"pipeline": {
|
|
"build": {
|
|
"dependsOn": ["^build"],
|
|
"dotEnv": [".env", ".env.local", ".env.production", ".env.production.local"],
|
|
"outputs": ["dist/**"]
|
|
},
|
|
"build:development": {
|
|
"dependsOn": ["^build"],
|
|
"dotEnv": [".env", ".env.local", ".env.development", ".env.development.local"],
|
|
"outputs": ["dist/**"]
|
|
},
|
|
"dev": {
|
|
"dotEnv": [".env", ".env.local", ".env.development", ".env.development.local"],
|
|
"cache": false,
|
|
"persistent": true
|
|
},
|
|
"dev:production": {
|
|
"dotEnv": [".env", ".env.local", ".env.production", ".env.production.local"],
|
|
"cache": false,
|
|
"persistent": true
|
|
},
|
|
"lint": {
|
|
"outputs": []
|
|
},
|
|
"lint:eslint": {
|
|
"outputs": []
|
|
},
|
|
"lint:prettier": {
|
|
"outputs": []
|
|
},
|
|
"lint:stylelint": {
|
|
"outputs": []
|
|
},
|
|
"type:check": {
|
|
"outputs": []
|
|
}
|
|
}
|
|
}
|