| 123456789101112131415161718192021222324252627282930313233343536 |
- {
- "$schema": "https://turbo.build/schema.json",
- "globalEnv": ["NODE_ENV"],
- "remoteCache": {
- "signature": true
- },
- "tasks": {
- "build": {
- "dependsOn": ["^build"]
- },
- "test": {
- "dependsOn": ["build"]
- },
- "test:browser": {
- "dependsOn": ["^build"]
- },
- "test:node": {
- "dependsOn": ["^build"]
- },
- "test:react-native": {
- "dependsOn": ["^build"]
- },
- "test:treeshakability": {
- "dependsOn": ["build"]
- },
- "test:types": {},
- "lint": {
- "inputs": ["$TURBO_DEFAULT$", "../../eslint.config.*"],
- "outputs": []
- },
- "lint:fix": {
- "inputs": ["$TURBO_DEFAULT$", "../../eslint.config.*"],
- "outputs": ["*"]
- }
- }
- }
|