-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig-root.json
95 lines (95 loc) · 2.14 KB
/
tsconfig-root.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"compilerOptions": {
"target": "es2020",
"allowJs": true,
"checkJs": false,
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
"noImplicitAny": false,
"noImplicitThis": false,
"alwaysStrict": false,
"strict": false,
"strictNullChecks": true,
"strictBindCallApply": true,
"strictFunctionTypes": true,
"strictPropertyInitialization": true,
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"noFallthroughCasesInSwitch": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": false,
"noEmitOnError": false,
"noEmit": true,
"pretty": true,
"skipDefaultLibCheck": true,
"skipLibCheck": true,
"inlineSourceMap": true,
"inlineSources": true,
"baseUrl": ".",
"module": "es6",
"experimentalDecorators": true,
"paths": {
"ember-intl/*": [
"node_modules/ember-intl/addon/*"
],
"fetch": [
"node_modules/ember-fetch"
],
"*": [
"types/*"
],
"ember-rrule-generator/*": [
"addons/ember-rrule-generator/src/*"
],
"test-app/*": [
"apps/test-app/app/*"
],
"test-app/tests/*": [
"apps/test-app/tests/*"
]
}
},
"include": [
"apps/*/app/**/*",
"apps/*/capacitor.config.ts",
"addons/*/src/**/*",
"addons/*/addon/**/*",
"engines/*/addon/**/*",
"apps/*/tests/**/*",
"addons/*/tests/**/*",
"engines/*/tests/**/*",
"tests/*/tests/**/*"
],
"exclude": [
"node_modules",
"/logs/",
"apps/*/node_modules",
"apps/*/dist",
"apps/*/dist-*",
"apps/*/dists/*",
"apps/*/tmp",
"apps/*/DEBUG",
"apps/*/vendor",
"apps/*/public",
"addons/*/node_modules",
"addons/*/dist",
"addons/*/dist-*",
"addons/*/dists/*",
"addons/*/tmp",
"addons/*/DEBUG",
"addons/*/vendor",
"addons/*/public",
"engines/*/node_modules",
"engines/*/dist",
"engines/*/dist-*",
"engines/*/dists/*",
"engines/*/tmp",
"engines/*/DEBUG",
"engines/*/vendor",
"engines/*/public",
".github",
".git",
".lint-todo"
]
}