Skip to content

Commit

Permalink
Override ember-cli's tsconfig.json see: ember-cli/ember-cli#10611 and e…
Browse files Browse the repository at this point in the history
  • Loading branch information
NullVoxPopuli committed Jan 10, 2025
1 parent cce2237 commit 990128d
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions files/test-app-overrides/tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
"extends": "@tsconfig/ember/tsconfig.json",
"glint": {
"environment": ["ember-loose", "ember-template-imports"]
},
"compilerOptions": {
"skipLibCheck": true,
"noEmit": true,
"noEmitOnError": false,
"declaration": false,
"declarationMap": false,
// 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": ".",
"paths": {
"<%= testAppInfo.packageName %>/tests/*": ["tests/*"],
"<%= testAppInfo.packageName %>/*": ["app/*"],
"*": ["types/*"]
},
"types": [
"ember-source/types",
]
}
}

0 comments on commit 990128d

Please sign in to comment.