-
Notifications
You must be signed in to change notification settings - Fork 1
/
tsconfig.json
39 lines (39 loc) · 1.36 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
{
"extends": "@tsconfig/ember/tsconfig.json",
"compilerOptions": {
"baseUrl": ".",
"skipLibCheck": true,
"declarationMap": false,
"allowImportingTsExtensions": true,
"verbatimModuleSyntax": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"declaration": false,
"allowJs": true,
"types": [
"ember-source/types",
"@ember-data-types/store/unstable-preview-types",
"@ember-data-types/adapter/unstable-preview-types",
"@ember-data-types/graph/unstable-preview-types",
"@ember-data-types/json-api/unstable-preview-types",
"@ember-data-types/legacy-compat/unstable-preview-types",
"@ember-data-types/request/unstable-preview-types",
"@ember-data-types/request-utils/unstable-preview-types",
"@ember-data-types/model/unstable-preview-types",
"@ember-data-types/serializer/unstable-preview-types",
"@ember-data-types/tracking/unstable-preview-types",
"@warp-drive-types/core-types/unstable-preview-types"
],
// Apps don't need to publish declarations
"paths": {
"ember-boilerplate/tests/*": ["tests/*"],
"ember-cli-flash/*": ["node_modules/ember-cli-flash"],
"ember-boilerplate/*": ["app/*"],
"*": ["types/*"]
}
},
"glint": {
"environment": ["ember-loose", "ember-template-imports"]
},
"include": ["app", "tests", "types"]
}