-
Notifications
You must be signed in to change notification settings - Fork 4
/
tsconfig.json
45 lines (38 loc) · 1.37 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
{
"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": ".",
// https://www.typescriptlang.org/tsconfig#forceConsistentCasingInFileNames
"forceConsistentCasingInFileNames": true,
// https://www.typescriptlang.org/tsconfig#noFallthroughCasesInSwitch
"noFallthroughCasesInSwitch": true,
// https://www.typescriptlang.org/tsconfig#noImplicitOverride
"noImplicitOverride": true,
// https://www.typescriptlang.org/tsconfig#noImplicitReturns
"noImplicitReturns": true,
// https://www.typescriptlang.org/tsconfig#noUnusedLocals
"noUnusedLocals": true,
// https://www.typescriptlang.org/tsconfig#noUnusedParameters
"noUnusedParameters": true,
"paths": {
"dummy/tests/*": ["tests/*"],
"dummy/*": ["tests/dummy/app/*", "app/*"],
"ember-cli-embedded": ["addon"],
"ember-cli-embedded/*": ["addon/*"],
"ember-cli-embedded/test-support": ["addon-test-support"],
"ember-cli-embedded/test-support/*": ["addon-test-support/*"],
"*": ["types/*"]
}
},
"include": [
"app/**/*",
"addon/**/*",
"tests/**/*",
"types/**/*",
"test-support/**/*",
"addon-test-support/**/*"
]
}