UNPKG

1.24 kBJSONView Raw
1{
2 "compilerOptions": {
3 "target": "es2017",
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,
20 "baseUrl": ".",
21 "module": "es6",
22 "experimentalDecorators": true,
23 "paths": {
24 "dummy/tests/*": [
25 "tests/*"
26 ],
27 "dummy/*": [
28 "tests/dummy/app/*",
29 "app/*"
30 ],
31 "ember-cli-page-object": [
32 "addon"
33 ],
34 "ember-cli-page-object/*": [
35 "addon/*"
36 ],
37 "ember-cli-page-object/test-support": [
38 "addon-test-support"
39 ],
40 "ember-cli-page-object/test-support/*": [
41 "addon-test-support/*"
42 ],
43 "*": [
44 "types/*"
45 ]
46 }
47 },
48 "include": [
49 "app/**/*",
50 "addon/**/*",
51 "tests/**/*",
52 "types/**/*",
53 "test-support/**/*",
54 "addon-test-support/**/*"
55 ]
56}