forked from edrlab/thorium-reader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
102 lines (102 loc) · 2.48 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
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
{
"compilerOptions": {
"outDir": "./dist/",
"sourceMap": true,
"noImplicitAny": true,
"noImplicitThis": true,
"alwaysStrict": true,
"strictFunctionTypes": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitUseStrict": false,
"declaration": true,
"noEmit": false,
"noEmitHelpers": true,
"importHelpers": true,
"noEmitOnError": false,
"noLib": false,
"noResolve": false,
"forceConsistentCasingInFileNames": false,
"inlineSources": true,
"inlineSourceMap": false,
"preserveConstEnums": true,
"isolatedModules": true,
"allowJs": false,
"maxNodeModuleJsDepth": 0,
"checkJs": false,
"stripInternal": false,
"suppressExcessPropertyErrors": false,
"suppressImplicitAnyIndexErrors": false,
"charset": "utf8",
"downlevelIteration": false,
"emitBOM": false,
"esModuleInterop": false,
"allowSyntheticDefaultImports": true,
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"pretty": true,
"diagnostics": false,
"listFiles": false,
"listEmittedFiles": false,
"traceResolution": false,
"disableSizeLimit": false,
"removeComments": true,
"skipLibCheck": false,
"module": "ES2020",
"moduleResolution": "Node",
"lib": [
"es2020",
"dom",
"dom.iterable"
],
"target": "es2020",
"jsx": "react",
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"baseUrl": ".",
"paths": {
"file-selector": [
"src/typings/noop.d.ts"
],
"readium-desktop/*": [
"./src/*"
],
"test/*": [
"./test/*"
],
"@r2-utils-js/*": [
"node_modules/r2-utils-js/dist/es8-es2017/src/*"
],
"@r2-opds-js/*": [
"node_modules/r2-opds-js/dist/es8-es2017/src/*"
],
"@r2-shared-js/*": [
"node_modules/r2-shared-js/dist/es8-es2017/src/*"
],
"@r2-streamer-js/*": [
"node_modules/r2-streamer-js/dist/es8-es2017/src/*"
],
"@r2-navigator-js/*": [
"node_modules/r2-navigator-js/dist/es8-es2017/src/*"
],
"@r2-lcp-js/*": [
"node_modules/r2-lcp-js/dist/es8-es2017/src/*"
],
"@lunr-languages/*": [
"node_modules/lunr-languages/*"
]
}
},
"include": [
"./src/**/*",
"./test/**/*"
],
"exclude": [
"node_modules"
],
"files": [
"typings.d.ts"
]
}