forked from edrlab/thorium-reader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
46 lines (46 loc) · 1.06 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
{
"compilerOptions": {
"outDir": "./dist/",
"sourceMap": true,
"noImplicitAny": true,
"module": "commonjs",
"lib": ["es2017", "es6", "dom"],
"target": "es6",
"jsx": "react",
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"baseUrl": ".",
"paths": {
"readium-desktop/*": ["./src/*"],
"test/*": ["./test/*"],
"@r2-utils-js/*": [
"node_modules/r2-utils-js/dist/es6-es2015/src/*"
],
"@r2-opds-js/*": [
"node_modules/r2-opds-js/dist/es6-es2015/src/*"
],
"@r2-shared-js/*": [
"node_modules/r2-shared-js/dist/es6-es2015/src/*"
],
"@r2-streamer-js/*": [
"node_modules/r2-streamer-js/dist/es6-es2015/src/*"
],
"@r2-navigator-js/*": [
"node_modules/r2-navigator-js/dist/es6-es2015/src/*"
],
"@r2-lcp-js/*": [
"node_modules/r2-lcp-js/dist/es6-es2015/src/*"
]
}
},
"include": [
"./src/**/*",
"./test/**/*",
],
"exclude": [
"node_modules"
],
"files": [
"typings.d.ts"
]
}