forked from oppia/oppia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
28 lines (28 loc) · 1.03 KB
/
tsconfig.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
{
"compilerOptions": {
"allowJs": true,
"lib": ["es2017", "dom", "webworker"],
"noImplicitUseStrict": true,
"outDir": "local_compiled_js",
"rootDir": ".",
"skipLibCheck": true,
"target": "es5",
"typeRoots": ["./node_modules/@types"]
},
"files_explanation": "These files are included separately since we still do not have webpack in extensions folder and these files are still included through scripts tags, so they need to be compiled separately.",
"files": [
"assets/constants.js",
"assets/rich_text_components_definitions.js",
"core/tests/karma-globals.ts",
"core/tests/karma.conf.ts",
"core/templates/dev/head/AppInit.ts",
"core/templates/dev/head/mathjaxConfig.ts",
"core/templates/dev/head/expressions/ExpressionParserService.js"
],
"include_explanation": "The files in interactions/LogicProof/static/js are yet to be integrated into webpack (#6961)",
"include": [
"extensions/ckeditor_plugins",
"extensions/interactions/LogicProof/static/js",
"typings"
]
}