-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
38 lines (38 loc) · 1.26 KB
/
tsconfig.json
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
33
34
35
36
37
38
{
"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.
"skipLibCheck": true,
"baseUrl": ".",
"target": "ES2022",
"paths": {
"the-mountains-are-calling/tests/*": ["tests/*"],
"the-mountains-are-calling/*": ["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"
]
},
"glint": {
"environment": [
"ember-loose",
"ember-template-imports",
]
},
"exclude": ["blueprints"],
}