forked from dotbitHQ/AllDID
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
42 lines (41 loc) · 902 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
{
"compilerOptions": {
"module": "commonjs",
"declaration": true,
"noImplicitAny": false,
"removeComments": true,
"noLib": false,
"lib": ["esnext", "dom"],
"types": ["jest", "node"],
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"esModuleInterop": true,
"resolveJsonModule": true,
"target": "es6",
"sourceMap": true,
"allowJs": true,
"strictNullChecks": true,
"baseUrl": "./",
"outDir": "./lib",
"paths": {
"alldid": ["src"],
"alldid/*": ["src/*"],
},
"skipLibCheck": true
},
"include": [
"src",
"tests",
"types",
".*.js",
"*.js",
"*.ts",
"example",
"packages"
],
"exclude": [
"**/*.spec.ts",
"packages/**/lib.esm", // For some unclear reason, they will affect webstorm's type definition. We have to exclude them.
"packages/**/lib"
]
}