Skip to content

Commit 722293e

Browse files
committed
Override ember-cli's tsconfig.json see: ember-cli/ember-cli#10611 and ember-cli/ember-cli#10613 and ember-cli/ember-cli#10612
1 parent df0eb5d commit 722293e

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
"extends": "@tsconfig/ember/tsconfig.json",
3+
"glint": {
4+
"environment": ["ember-loose", "ember-template-imports"]
5+
},
6+
"compilerOptions": {
7+
"skipLibCheck": true,
8+
"noEmit": true,
9+
"noEmitOnError": false,
10+
"declaration": false,
11+
"declarationMap": false,
12+
// The combination of `baseUrl` with `paths` allows Ember's classic package
13+
// layout, which is not resolvable with the Node resolution algorithm, to
14+
// work with TypeScript.
15+
"baseUrl": ".",
16+
"paths": {
17+
"<%= testAppInfo.packageName %>/tests/*": ["tests/*"],
18+
"<%= testAppInfo.packageName %>/*": ["app/*"],
19+
"*": ["types/*"]
20+
},
21+
"types": [
22+
"ember-source/types",
23+
]
24+
}
25+
}

0 commit comments

Comments
 (0)