{
  "extends": "@tsconfig/ember/tsconfig.json",
  "compilerOptions": {
    // The combination of `baseUrl` with `paths` allows Ember's classic package
    // layout, which is not resolvable with the Node resolution algorithm, to
    // work with TypeScript.
    "allowJs": true,
    "baseUrl": ".",
    "paths": {
      "ember-debug/deps/*": ["node_modules/*"],
      "ember-debug/*": ["ember_debug/*"],
      "ember-inspector/tests/*": ["tests/*"],
      "ember-inspector/*": ["app/*", "lib/ui/app/*"],
      "ui": ["lib/ui/addon"],
      "ui/*": ["lib/ui/addon/*"],
      "ui/test-support": ["lib/ui/addon-test-support"],
      "ui/test-support/*": ["lib/ui/addon-test-support/*"],
      "*": ["types/*"]
    }
  },
  "include": ["app/**/*", "tests/**/*", "types/**/*", "lib/ui/**/*", "ember_debug/**/*"]
}
