-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
Copy pathtsconfig.json
68 lines (68 loc) · 3.61 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"extends": "./tsconfig.root.json",
"compilerOptions": {
"experimentalDecorators": true,
"noImplicitAny": false
},
"files": [
"packages/unpublished-test-infra/addon-test-support/qunit-asserts/utils/is-thenable.ts",
"packages/unpublished-test-infra/addon-test-support/qunit-asserts/index.ts",
"packages/unpublished-test-infra/addon-test-support/qunit-asserts/check-matcher.ts",
"packages/unpublished-test-infra/addon-test-support/qunit-asserts/assert-warning.ts",
"packages/unpublished-test-infra/addon-test-support/qunit-asserts/assert-deprecation.ts",
"packages/unpublished-test-infra/addon-test-support/qunit-asserts/assert-assertion.ts",
"tests/fastboot/types/global.d.ts",
"tests/fastboot/types/fastboot-test-app/index.d.ts",
"tests/fastboot/app/serializers/application.ts",
"tests/fastboot/app/router.ts",
"tests/fastboot/app/resolver.ts",
"tests/fastboot/app/config/environment.d.ts",
"tests/fastboot/app/app.ts",
"tests/fastboot/app/adapters/application.ts",
"ember-data-types/q/schema-service.ts",
"ember-data-types/q/record-instance.ts",
"ember-data-types/q/cache-store-wrapper.ts",
"ember-data-types/q/record-data-schemas.ts",
"ember-data-types/q/record-data-json-api.ts",
"ember-data-types/q/promise-proxies.ts",
"ember-data-types/q/minimum-serializer-interface.ts",
"ember-data-types/q/minimum-adapter-interface.ts",
"ember-data-types/q/identifier.ts",
"ember-data-types/q/fetch-manager.ts",
"ember-data-types/q/ember-data-json-api.ts",
"tests/graph/tests/integration/graph/polymorphism/implicit-keys-test.ts",
"tests/graph/tests/integration/graph/graph-test.ts",
"tests/graph/tests/integration/graph/edge-test.ts",
"tests/graph/tests/integration/graph/edge-removal/setup.ts",
"tests/graph/tests/integration/graph/edge-removal/helpers.ts",
"tests/graph/tests/integration/graph/edge-removal/abstract-edge-removal-test.ts",
"tests/graph/tests/integration/graph.ts",
"packages/json-api/src/-private/cache.ts",
"packages/model/src/index.ts",
"packages/model/src/-private/util.ts",
"packages/model/src/-private/promise-many-array.ts",
"packages/model/src/-private/model-for-mixin.ts",
"packages/model/src/-private/record-state.ts",
"packages/model/src/-private/notify-changes.ts",
"packages/adapter/src/rest.ts",
"packages/adapter/src/json-api.ts",
"packages/adapter/src/index.ts",
"packages/adapter/src/-private/utils/serialize-query-params.ts",
"packages/adapter/src/-private/utils/fetch.ts",
"packages/adapter/src/-private/utils/determine-body-promise.ts",
"packages/adapter/src/-private/utils/continue-on-reject.ts",
"packages/adapter/src/-private/fastboot-interface.ts",
"packages/adapter/src/-private/build-url-mixin.ts",
"packages/-ember-data/addon/store.ts",
"tests/main/tests/integration/request-state-service-test.ts",
"tests/main/tests/integration/record-data/store-wrapper-test.ts",
"tests/main/tests/integration/record-data/record-data-test.ts",
"tests/main/tests/integration/model-errors-test.ts",
"tests/main/tests/integration/identifiers/scenarios-test.ts",
"tests/main/tests/integration/identifiers/record-identifier-for-test.ts",
"tests/main/tests/integration/identifiers/polymorphic-scenarios-test.ts",
"tests/main/tests/integration/identifiers/new-records-test.ts",
"tests/main/tests/integration/identifiers/configuration-test.ts",
"tests/main/tests/helpers/accessors.ts"
]
}