|
4 | 4 | "target": "es2022", |
5 | 5 | "lib": ["DOM", "ES2022"], |
6 | 6 | "allowJs": true, |
7 | | - "moduleResolution": "node", |
8 | 7 | "allowSyntheticDefaultImports": true, |
9 | 8 | "alwaysStrict": true, |
10 | 9 | "strictNullChecks": true, |
11 | 10 | "strictPropertyInitialization": true, |
12 | 11 | "noEmitOnError": false, |
13 | 12 | "noEmit": true, |
14 | | - "baseUrl": ".", |
15 | 13 | "module": "esnext", |
16 | 14 | "experimentalDecorators": true, |
17 | 15 | "paths": { |
18 | | - "dummy/tests/*": ["tests/*"], |
19 | | - "dummy/*": ["tests/dummy/app/*", "app/*"], |
20 | | - "@sentry/ember": ["addon"], |
21 | | - "@sentry/ember/*": ["addon/*"], |
22 | | - "@sentry/ember/test-support": ["addon-test-support"], |
23 | | - "@sentry/ember/test-support/*": ["addon-test-support/*"], |
24 | | - "*": ["types/*"] |
| 16 | + "dummy/tests/*": ["./tests/*"], |
| 17 | + "dummy/*": ["./tests/dummy/app/*", "./app/*"], |
| 18 | + "@sentry/ember": ["./addon"], |
| 19 | + "@sentry/ember/*": ["./addon/*"], |
| 20 | + "@sentry/ember/test-support": ["./addon-test-support"], |
| 21 | + "@sentry/ember/test-support/*": ["./addon-test-support/*"], |
| 22 | + "*": ["./types/*"] |
25 | 23 | } |
26 | 24 | }, |
27 | | - "include": ["app/**/*", "addon/**/*", "tests/**/*", "types/**/*", "test-support/**/*", "addon-test-support/**/*"] |
| 25 | + "include": [ |
| 26 | + "./app/**/*", |
| 27 | + "./addon/**/*", |
| 28 | + "./tests/**/*", |
| 29 | + "./types/**/*", |
| 30 | + "./test-support/**/*", |
| 31 | + "./addon-test-support/**/*" |
| 32 | + ] |
28 | 33 | } |
0 commit comments