mirror of
https://github.com/Mintplex-Labs/langchainjs.git
synced 2026-07-01 12:17:38 -04:00
52 lines
804 B
JSON
52 lines
804 B
JSON
{
|
|
"$schema": "https://turbo.build/schema.json",
|
|
"globalDependencies": [
|
|
"**/.env"
|
|
],
|
|
"pipeline": {
|
|
"build": {
|
|
"dependsOn": [
|
|
"^build"
|
|
],
|
|
"outputs": [
|
|
"dist/**",
|
|
"dist-cjs/**",
|
|
"*.js",
|
|
"*.cjs",
|
|
"*.d.ts"
|
|
],
|
|
"inputs": [
|
|
"src/**",
|
|
"scripts/**",
|
|
"package.json",
|
|
"tsconfig.json"
|
|
]
|
|
},
|
|
"lint": {
|
|
"outputs": []
|
|
},
|
|
"format": {
|
|
"outputs": []
|
|
},
|
|
"format:check": {
|
|
"outputs": []
|
|
},
|
|
"test": {
|
|
"outputs": [],
|
|
"dependsOn": [
|
|
"^build"
|
|
]
|
|
},
|
|
"test:integration": {
|
|
"outputs": [],
|
|
"dependsOn": [
|
|
"^build"
|
|
]
|
|
},
|
|
"precommit": {},
|
|
"start": {
|
|
"cache": false
|
|
}
|
|
}
|
|
}
|