{
  "extends": "./tsconfig.base.json",
  "include": [ "src/**/*" ],
  "exclude": [
    "./node_modules/",
    "./src/service_worker/",
    "./src/gen/",
    "./out"
  ],
  "compilerOptions": {
    "outDir": "./out/tsc",
    "lib": [
      "dom",                               // Need to be explicitly mentioned now since we're overriding default included libs.
      "es2021",                            // Need this to use Promise.allSettled, replaceAll, etc
    ],
    "paths": {
      "*" : ["*", "./node_modules/@tsundoku/micromodal_types/*"]
    },
    "esModuleInterop": true,
    "allowSyntheticDefaultImports": true,
  }
}
