{
  "compilerOptions": {
    "target": "es2020",
    "allowJs": true,
    "moduleResolution": "node",
    "allowSyntheticDefaultImports": true,
    "noImplicitAny": true,
    "noImplicitThis": true,
    "alwaysStrict": true,
    "strictNullChecks": true,
    "strictPropertyInitialization": true,
    "noFallthroughCasesInSwitch": true,
    "noUnusedLocals": true,
    "noUnusedParameters": true,
    "noImplicitReturns": true,
    "noEmitOnError": true,
    "noEmit": true,
    "inlineSourceMap": true,
    "inlineSources": true,
    "baseUrl": ".",
    "module": "es2020",
    "experimentalDecorators": true,
    "skipLibCheck": true,
    "paths": {
      "@cardstack/web-client/tests/*": [
        "tests/*"
      ],
      "@cardstack/web-client/*": [
        "app/*"
      ],
      "*": [
        "types/*"
      ],
      "@ember/destroyable": ["../../node_modules/ember-destroyable-polyfill"],
      "@cardstack/web-client/mirage/*": ["mirage/*"],
    }
  },
  "include": [
    "app/**/*",
    "tests/**/*",
    "types/**/*",
    "mirage"
  ]
}
