{
  "compilerOptions": {
    "module": "ESNext",
    "target": "ESNext",
    "experimentalDecorators": true,
    "strict": false,
    "declaration": true,
    "emitDecoratorMetadata": true,
    "inlineSourceMap": true,
    "allowUnreachableCode": true,
    "noImplicitReturns": false,
    "noImplicitAny": false,
    "downlevelIteration": true,
    "removeComments": false,
    "allowUnusedLabels": true,
    "allowUmdGlobalAccess": true,
    "resolveJsonModule": true,
    "moduleResolution": "Bundler",
    "inlineSources": false,
    "allowJs": true,
    "checkJs": false,
    "skipDefaultLibCheck": true,
    "skipLibCheck": true,
    "lib": [
      "DOM",
      "DOM.Iterable",
      "ES2015",
      "ESNext",
      "ES2020"
    ],
    "outDir": "./tmp/dist",
    "noLib": false,
    "esModuleInterop": true,
    "importHelpers": true
  },
  "buildOnSave": true,
  "compileOnSave": true,
  "exclude": [
    "./plugins/**/*",
    "./typings/**/*",
    "./node_modules/**/*",
    "./libs/compiler/**/*"
  ],
  "include": [
    "src/express/app.ts",
    "./src/**/*",
    "./userscripts/**/*"
  ]
}