{
  "compilerOptions": {
    "lib": ["ESNext"],
    "target": "ESNext",
    
    "module": "ESNext",
    "moduleResolution": "node",
    "verbatimModuleSyntax": true,

    "esModuleInterop": true,
    "preserveSymlinks": true,
    "noFallthroughCasesInSwitch": true,
    "allowSyntheticDefaultImports": true,
    "forceConsistentCasingInFileNames": true,
    
    "declaration": true,
    "emitDeclarationOnly": true,
    "rootDir": "./src",
    "outDir": "./dist",

    "strict": true,

    "skipLibCheck": true,
  },
  "exclude": ["node_modules", "test", "example", "dist", "build.ts"]
}
