forked from oppia/oppia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig-lint.json
125 lines (125 loc) · 2.76 KB
/
tsconfig-lint.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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"compilerOptions": {
"allowJs": true,
"skipLibCheck": true,
"downlevelIteration": true,
"lib": [
"es2017",
"dom",
"webworker"
],
"module": "es2020",
"noImplicitUseStrict": true,
"outDir": "local_compiled_js_for_test",
"rootDir": ".",
"target": "es6",
"sourceMap": true,
"typeRoots": [
"./node_modules/@types"
],
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"resolveJsonModule": true,
"moduleResolution": "node",
"baseUrl": ".",
"paths": {
"analytics-constants": [
"assets/analytics-constants.json"
],
"app.constants": [
"core/templates/app.constants"
],
"google-analytics.initializer": [
"core/templates/google-analytics.initializer"
],
"hybrid-router-module-provider": [
"core/templates/hybrid-router-module-provider"
],
"app-events/*": [
"core/templates/app-events/*"
],
"base-components/*": [
"core/templates/base-components/*"
],
"components/*": [
"core/templates/components/*"
],
"directives/*": [
"core/templates/directives/*"
],
"domain/*": [
"core/templates/domain/*"
],
"expressions/*": [
"core/templates/expressions/*"
],
"i18n/*": [
"core/templates/i18n/*"
],
"modules/*": [
"core/templates/modules/*"
],
"pages/*": [
"core/templates/pages/*"
],
"services/*": [
"core/templates/services/*"
],
"classifiers/*": [
"extensions/classifiers/*"
],
"interactions/*": [
"extensions/interactions/*"
],
"rich_text_components/*": [
"extensions/rich_text_components/*"
],
"objects/*": [
"extensions/objects/*"
],
"filters/*": [
"core/templates/filters/*"
],
"static/*": [
"third_party/static/*"
],
"tests/*": [
"core/templates/tests/*"
],
"stream": [
"./node_modules/stream-browserify"
],
"zlib": [
"./node_modules/browserify-zlib"
],
"path": [
"./node_modules/path-browserify"
],
"utility/*": [
"core/templates/utility/*"
],
"visualizations/*": [
"extensions/visualizations/*"
],
"value_generators/*": [
"extensions/value_generators/*"
]
}
},
"files": [
"assets/constants.ts",
"assets/rich_text_components_definitions.ts",
"src/main.ts",
"core/tests/karma.conf.ts"
],
"include": [
"core",
"extensions",
"typings"
],
"exclude": [
"core/tests"
]
}