UNPKG

977 BJSONView Raw
1{
2 "compilerOptions": {
3 "target": "ES6",
4 "allowJs": false,
5 "moduleResolution": "node",
6 "noEmitOnError": true,
7 "inlineSourceMap": true,
8 "inlineSources": true,
9 "experimentalDecorators": true,
10 "strictNullChecks": true,
11 "baseUrl": ".",
12 "paths": {
13 "dummy/tests/*": [
14 "tests/*",
15 "tests/dummy/lib/in-repo-a/test-support/*"
16 ],
17 "dummy/*": [
18 "tests/dummy/app/*",
19 "tests/dummy/lib/in-repo-a/app/*",
20 "tests/dummy/lib/in-repo-b/app/*"
21 ],
22 "in-repo-a/*": [
23 "tests/dummy/lib/in-repo-a/addon/*"
24 ],
25 "in-repo-a/test-support": [
26 "tests/dummy/lib/in-repo-a/addon-test-support/"
27 ],
28 "in-repo-a/test-support/*": [
29 "tests/dummy/lib/in-repo-a/addon-test-support/*"
30 ],
31 "in-repo-b/*": [
32 "tests/dummy/lib/in-repo-b/addon/*"
33 ]
34 }
35 },
36 "include": [
37 "tests"
38 ],
39 "exclude": [
40 "tests/dummy/app/snippets"
41 ]
42}