{
    "default": {
        "input": "src/index.ts",
        "output": "dist/index.js",
        "test": false,
        "mode": "production"
    },
    "build": {
        "input": "src/index.ts",
        "output": "dist/index.js",
        "test": false,
        "mode": "production"
    },
    "watch": {
        "input": "src/index.ts",
        "output": "dist/index.js",
        "watch": true,
        "test": false
    },
    "test": {
        "input": "src/tests/index.test.ts",
        "output": "dist.test/index.test.js",
        "test": true
    },
    "bolt": {
        "input": "src/jsx/index.ts",
        "output": "./jsx/index.js"
    },
    "minify": {
        "input": "src/index.ts",
        "output": "dist/index.js",
        "minify": true,
        "test": false,
        "mode": "production"
    },
    "uglify": {
        "input": "src/index.ts",
        "output": "dist/index.js",
        "uglify": true,
        "test": false,
        "mode": "production"
    },
    "clean": {
        "input": "src/index.ts",
        "output": "dist/index.js",
        "clean": ["before"],
        "clean-only": true
    }
}
