-
Notifications
You must be signed in to change notification settings - Fork 7
/
tsconfig.json
49 lines (49 loc) · 1.71 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
39
40
41
42
43
44
45
46
47
48
49
{
"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.
"baseUrl": ".",
"paths": {
"ember-polaris-pokedex/tests/*": [
"tests/*"
],
"ember-polaris-pokedex/*": [
"app/*"
],
"*": [
"types/*"
]
},
"types": [
"./node_modules/@ember-data-types/adapter/unstable-preview-types",
"./node_modules/@ember-data-types/graph/unstable-preview-types",
"./node_modules/@ember-data-types/json-api/unstable-preview-types",
"./node_modules/@ember-data-types/rest/unstable-preview-types",
"./node_modules/@ember-data-types/legacy-compat/unstable-preview-types",
"./node_modules/@ember-data-types/model/unstable-preview-types",
"./node_modules/@ember-data-types/request-utils/unstable-preview-types",
"./node_modules/@ember-data-types/request/unstable-preview-types",
"./node_modules/@ember-data-types/serializer/unstable-preview-types",
"./node_modules/@ember-data-types/store/unstable-preview-types",
"./node_modules/@ember-data-types/tracking/unstable-preview-types",
"./node_modules/@warp-drive-types/core-types/unstable-preview-types",
"./node_modules/@warp-drive/ember/unstable-preview-types",
"./node_modules/ember-data-types/unstable-preview-types",
"./node_modules/@types/dom-view-transitions",
"ember-source/types",
"vite/client"
]
},
"glint": {
"environment": [
"ember-loose",
"ember-template-imports"
]
},
"exclude": [
"blueprints",
"tmp"
]
}