-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
36 lines (35 loc) · 924 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
{
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"allowUnreachableCode": false,
"declaration": false,
"experimentalDecorators": true,
"skipLibCheck": true,
"lib": [
"dom",
"es2017"
],
"baseUrl": ".",
"paths": {
"@webpress/core":["src/packages/core/src"],
"@webpress/features":["src/packages/features/src"],
"@webpress/router":["src/packages/router/src"],
"@webpress/theme":["src/packages/theme/src"]
},
"noResolve": true,
"moduleResolution": "node",
"module": "esnext",
"target": "es2017",
"noUnusedLocals": true,
"noUnusedParameters": true,
"jsx": "react",
"jsxFactory": "h",
},
"include": [
"./src/packages/core/src",
"./src/packages/theme/src",
"./src/packages/router/src",
"./src/packages/features/src",
"./src/local-app",
],"exclude": ["./src/packages/core/dist"]
}