Skip to content

Commit eb3f42f

Browse files
committed
Ch
1 parent 857b1cd commit eb3f42f

File tree

1 file changed

+50
-12
lines changed

1 file changed

+50
-12
lines changed

tsconfig.json

+50-12
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,56 @@
11
{
2-
"extends": "@tsconfig/ember/tsconfig.json",
32
"compilerOptions": {
4-
// The combination of `baseUrl` with `paths` allows Ember's classic package
5-
// layout, which is not resolvable with the Node resolution algorithm, to
6-
// work with TypeScript.
3+
"target": "es2020",
4+
"allowJs": true,
5+
"moduleResolution": "node",
6+
"allowSyntheticDefaultImports": true,
7+
"noImplicitAny": true,
8+
"noImplicitThis": true,
9+
"alwaysStrict": true,
10+
"strictNullChecks": true,
11+
"strictPropertyInitialization": true,
12+
"noFallthroughCasesInSwitch": true,
13+
"noUnusedLocals": true,
14+
"noUnusedParameters": true,
15+
"noImplicitReturns": true,
16+
"noEmitOnError": true,
17+
"noEmit": true,
18+
"inlineSourceMap": true,
19+
"inlineSources": true,
720
"baseUrl": ".",
21+
"module": "es6",
22+
"experimentalDecorators": true,
823
"paths": {
9-
"dummy/tests/*": ["tests/*"],
10-
"dummy/*": ["tests/dummy/app/*", "app/*"],
11-
"ember-cloud-firestore-adapter": ["addon"],
12-
"ember-cloud-firestore-adapter/*": ["addon/*"],
13-
"ember-cloud-firestore-adapter/test-support": ["addon-test-support"],
14-
"ember-cloud-firestore-adapter/test-support/*": ["addon-test-support/*"],
15-
"*": ["types/*"]
24+
"dummy/tests/*": [
25+
"tests/*"
26+
],
27+
"dummy/*": [
28+
"tests/dummy/app/*",
29+
"app/*"
30+
],
31+
"ember-cloud-firestore-adapter": [
32+
"addon"
33+
],
34+
"ember-cloud-firestore-adapter/*": [
35+
"addon/*"
36+
],
37+
"ember-cloud-firestore-adapter/test-support": [
38+
"addon-test-support"
39+
],
40+
"ember-cloud-firestore-adapter/test-support/*": [
41+
"addon-test-support/*"
42+
],
43+
"*": [
44+
"types/*"
45+
]
1646
}
17-
}
47+
},
48+
"include": [
49+
"app/**/*",
50+
"addon/**/*",
51+
"tests/**/*",
52+
"types/**/*",
53+
"test-support/**/*",
54+
"addon-test-support/**/*"
55+
]
1856
}

0 commit comments

Comments
 (0)