forked from oppia/oppia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig-for-compile-check.json
37 lines (37 loc) · 1.17 KB
/
tsconfig-for-compile-check.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
{
"compilerOptions": {
"allowJs": true,
"lib": ["es2017", "dom", "webworker"],
"noImplicitUseStrict": true,
"outDir": "local_compiled_js_for_test",
"rootDir": ".",
"skipLibCheck": true,
"target": "es5",
"typeRoots": ["./node_modules/@types"],
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"esModuleInterop": true,
"baseUrl": ".",
"paths": {
"app.constants": ["core/templates/dev/head/app.constants"],
"components/*": ["core/templates/dev/head/components/*"],
"domain/*": ["core/templates/dev/head/domain/*"],
"pages/*": ["core/templates/dev/head/pages/*"],
"services/*": ["core/templates/dev/head/services/*"],
"classifiers/*": ["extensions/classifiers/*"],
"interactions/*": ["extensions/interactions/*"],
"filters/*": ["core/templates/dev/head/filters/*"]
}
},
"files": [
"assets/constants.ts",
"assets/rich_text_components_definitions.ts",
"core/tests/karma-globals.ts",
"core/tests/karma.conf.ts"
],
"include": ["core", "extensions", "typings"],
"exclude": [
"core/tests",
"core/templates/dev/head/google-analytics.initializer.ts"
]
}