-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathtsconfig.json
35 lines (31 loc) · 1.03 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
{
"extends": "@tsconfig/ember/tsconfig.json",
"compilerOptions": {
"allowJs": true, // Glint might need this?
// 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": ".",
"forceConsistentCasingInFileNames": true,
"paths": {
"codecrafters-frontend/tests/*": ["tests/*"],
"codecrafters-frontend/mirage/*": ["mirage/*"],
"codecrafters-frontend/*": ["app/*"],
"*": ["types/*"]
},
"strict": true,
"noEmitOnError": true,
"noUncheckedIndexedAccess": true,
"noFallthroughCasesInSwitch": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noPropertyAccessFromIndexSignature": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true
},
"glint": {
"environment": ["ember-loose", "ember-template-imports"]
},
"include": ["app/**/*", "tests/**/*", "types/**/*", "mirage/**/*"]
}