{
    "compilerOptions": {
        "module": "CommonJS",
        "target": "ESNext",
        "lib": ["es2015", "ES2019.Object"],
        "esModuleInterop": true,
        "declaration": true,
        // Do not change or the linking script will stop working
        "outDir": "./dist",
        "sourceMap": true,
        "newLine": "LF",
        "noUnusedLocals": true,
        "noUnusedParameters": true,
        "incremental": true,
        "strict": true,
        "downlevelIteration": true,
        "jsx": "react-jsx",
        "noFallthroughCasesInSwitch": true,
        "skipLibCheck": true,
        "baseUrl": "src",
        "types": ["vitest/globals"],
        "moduleResolution": "Node"
    },
    "include": ["src"],
    "exclude": ["docs"]
}
