We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent df0eb5d commit 722293eCopy full SHA for 722293e
files/test-app-overrides/tsconfig.json
@@ -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