{
  "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.
    "baseUrl": ".",
    "declarationDir": "declarations",

    /**
      We don't want to include types dependencies in our compiled output, so tell TypeScript
      to enforce using `import type` instead of `import` for Types.
     */
    "verbatimModuleSyntax": true,

    /**
      We want our tooling to know how to resolve our custom files so the appropriate plugins
      can do the proper transformations on those files.
    */
    "allowImportingTsExtensions": true,
    "paths": {
      "dummy/tests/*": ["tests/*"],
      "dummy/*": ["tests/dummy/app/*", "app/*"],
      "ember-prism": ["addon"],
      "ember-prism/*": ["addon/*"],
      "ember-prism/test-support": ["addon-test-support"],
      "ember-prism/test-support/*": ["addon-test-support/*"],
      "*": ["types/*"]
    }
  },
  "glint": {
    "environment": "ember-loose"
  }
}
