|
1 | 1 | {
|
2 |
| - "extends": "@tsconfig/ember/tsconfig.json", |
3 | 2 | "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, |
7 | 20 | "baseUrl": ".",
|
| 21 | + "module": "es6", |
| 22 | + "experimentalDecorators": true, |
8 | 23 | "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 | + ] |
16 | 46 | }
|
17 |
| - } |
| 47 | + }, |
| 48 | + "include": [ |
| 49 | + "app/**/*", |
| 50 | + "addon/**/*", |
| 51 | + "tests/**/*", |
| 52 | + "types/**/*", |
| 53 | + "test-support/**/*", |
| 54 | + "addon-test-support/**/*" |
| 55 | + ] |
18 | 56 | }
|
0 commit comments