-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
32 lines (32 loc) · 1.14 KB
/
tsconfig.json
File metadata and controls
32 lines (32 loc) · 1.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
"extends": "@tsconfig/ember",
"glint": {
"environment": ["ember-loose", "ember-template-imports"]
},
"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": ".",
"paths": {
"ember-glint-bug-repro/tests/*": ["tests/*"],
"ember-glint-bug-repro/*": ["app/*"],
"*": ["types/*"]
},
"types": [
"ember-source/types",
"ember-data/unstable-preview-types",
"@ember-data/store/unstable-preview-types",
"@ember-data/adapter/unstable-preview-types",
"@ember-data/graph/unstable-preview-types",
"@ember-data/json-api/unstable-preview-types",
"@ember-data/legacy-compat/unstable-preview-types",
"@ember-data/request/unstable-preview-types",
"@ember-data/request-utils/unstable-preview-types",
"@ember-data/model/unstable-preview-types",
"@ember-data/serializer/unstable-preview-types",
"@ember-data/tracking/unstable-preview-types",
"@warp-drive/core-types/unstable-preview-types"
]
}
}