forked from ankitects/anki
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
63 lines (63 loc) · 1.65 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
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
{
"include": [],
"exclude": [],
"references": [
{ "path": "components" },
{ "path": "congrats" },
{ "path": "deck-options" },
{ "path": "editable" },
{ "path": "editor" },
{ "path": "graphs" },
{ "path": "html-filter" },
{ "path": "reviewer" },
{ "path": "lib" },
{ "path": "mathjax" },
{ "path": "domlib" },
{ "path": "sveltelib" },
{ "path": "icons" }
],
"compilerOptions": {
"declaration": true,
"isolatedModules": true,
"composite": true,
"target": "es2019",
"module": "es2020",
"lib": [
"es2017",
"es2018.intl",
"es2018.promise",
"es2019.array",
"es2019.object",
"es2019.string",
"es2020.promise",
"dom",
"dom.iterable"
],
"outDir": "../out",
"rootDir": "..",
"rootDirs": [
"..",
"../out"
],
"baseUrl": ".",
"paths": {
"@tslib/*": ["lib/*", "../out/ts/lib/*"]
},
"types": [],
"importsNotUsedAsValues": "error",
"strict": true,
"noImplicitAny": false,
"strictNullChecks": true,
"strictFunctionTypes": true,
"strictBindCallApply": true,
"strictPropertyInitialization": true,
"noImplicitThis": true,
"alwaysStrict": true,
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"jsx": "react",
"noEmitHelpers": true,
"importHelpers": true
}
}