{
    "sourceRoot": "libs/nx-esbuild/src",
    "projectType": "library",
    "targets": {
        "lint": {
            "executor": "@nrwl/linter:eslint",
            "options": {
                "lintFilePatterns": ["libs/nx-esbuild/**/*.ts"]
            },
            "outputs": ["{options.outputFile}"]
        },
        "test": {
            "executor": "@nrwl/workspace:run-commands",
            "options": {
                "command": "npx vitest --run --root libs/nx-esbuild"
            }
        },
        "build": {
            "executor": "@nrwl/workspace:run-commands",
            "options": {
                "commands": [
                    {
                        "command": "tsc -b libs/nx-esbuild",
                        "forwardAllArgs": true
                    }
                ],
                "parallel": false
            }
        }
    }
}
