35 lines
857 B
JSON
35 lines
857 B
JSON
{
|
|
"$schema": "https://turborepo.org/schema.json",
|
|
"tasks": {
|
|
"build": {
|
|
"dependsOn": ["^build"],
|
|
"inputs": ["src/**/*", "!src/**/*.test.ts", "tsconfig.json", "tsconfig.build.json"],
|
|
"outputs": ["dist/**", "cjs/**"]
|
|
},
|
|
"build:watch": {
|
|
"inputs": ["src/**/*", "!src/**/*.test.ts", "tsconfig.json", "tsconfig.build.json"],
|
|
"outputs": ["dist/**", "cjs/**"],
|
|
"cache": false,
|
|
"persistent": true
|
|
},
|
|
"test": {
|
|
"dependsOn": ["^build"],
|
|
"inputs": ["src/**/*"],
|
|
"outputs": []
|
|
},
|
|
"test:watch": {
|
|
"dependsOn": ["^build"],
|
|
"cache": false,
|
|
"persistent": true
|
|
},
|
|
"checks": {
|
|
"dependsOn": ["build", "lint", "test"],
|
|
"outputs": []
|
|
},
|
|
"lint": {
|
|
"dependsOn": ["^build"],
|
|
"inputs": ["src/**/*"],
|
|
"outputs": []
|
|
}
|
|
}
|
|
}
|