{
    "version": "2.0.0",
    "tasks": [
        {
            "type": "npm",
            "script": "dev",
            "group": "build",
            "isBackground": true,
            "problemMatcher": {
                "owner": "typescript",
                "pattern": "$tsc",
                "background": {
                    "activeOnStart": true,
                    "beginsPattern": {
                        "regexp": "^.*Starting compilation in watch mode.*$"
                    },
                    "endsPattern": {
                        "regexp": "^.*Found [0-9]+ errors.*$"
                    }
                }
            },
            "label": "npm: dev",
            "detail": "tsx --watch --watch-path=src/type_generator.ts --watch-path=src/fit.ts codegen/codegen.ts"
        },
        {
            "type": "npm",
            "script": "test",
            "group": "test",
            "problemMatcher": [],
            "label": "npm: test",
            "detail": "vitest"
        }
    ]
}