{
  "compilerOptions": {
    // Enable latest features
    "lib": ["ESNext"],
    "target": "ESNext",
    "module": "ESNext",
    "moduleDetection": "force",
    "jsx": "react-jsx",
    "allowJs": true,

    // Bundler mode
    "moduleResolution": "bundler",
    "allowImportingTsExtensions": true,
    "verbatimModuleSyntax": true,
    "noEmit": true,
    "esModuleInterop": true,

    // Best practices
    "strict": true,
    "skipLibCheck": true,
    "noFallthroughCasesInSwitch": true,

    // Some stricter flags (disabled by default)
    "noUnusedLocals": false,
    "noUnusedParameters": false,
    "noPropertyAccessFromIndexSignature": false,

    "paths": {
      "@components": [ "./src/components/index.ts" ],
      "@components/*": [ "./src/components/*" ],
      "@core": [ "./src/core/index.ts" ],
      "@core/*": [ "./src/core/*" ],
      "@plugin/*": [ "./src/plugin/*" ],
      "@lib/*": [ "./src/lib/*" ]
    }
  },
  "exclude": [
    "test"
  ]
}
