-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtsconfig.json
47 lines (42 loc) · 1014 Bytes
/
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
{
"compilerOptions": {
"target": "ES5",
"strict": true,
"strictNullChecks": true,
"jsx": "react",
"jsxFactory": "h",
"allowSyntheticDefaultImports": true,
"noImplicitAny": true,
"removeComments": true,
"preserveConstEnums": true,
"downlevelIteration": true,
"sourceMap": true,
"lib": ["es7", "dom"],
"esModuleInterop": true,
"baseUrl": ".",
"skipLibCheck": true,
"paths": {
"js-widgets": ["src/modules/core/main/index.ts"],
"js-widgets/util": ["src/modules/util/main/index.ts"]
},
"typeRoots": [
"node_modules/@types"
],
"types": [
"node", "mocha", "chai"
]
},
"files": [
"src/modules/core/main/index.ts",
"src/modules/html/main/index.ts",
"src/modules/hooks/main/index.ts",
"src/modules/svg/main/index.ts",
"src/modules/util/main/index.ts",
],
"include": [
"./src/modules/*/main/**/*.ts*"
],
"exclude": [
"node_modules/dyo/typings/index.d.ts"
]
}