# Installation
> `npm install --save warcraft3`

# Summary
This package is type definitions for Warcraft3 APIs.

# Usage
{
    "compilerOptions": {
            "target": "ESNext", // recommended
            "lib": [], // No libraries are required
            "strict": true, // recommended
            "types": ["warcraft3"]
    }
    "tstl": {
        "luaTarget": "5.3", // recommended
        "noImplicitSelf": true,
        "luaBundle": "output/war3map.lua", // Your output path of lua bundle file.
        "luaBundleEntry": "main.ts" // Your typescript main module entry.
    }
}