-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtsconfig.json
51 lines (51 loc) · 1005 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
48
49
50
51
{
"include": [
"src/**/*",
"tests/src/**/*"
],
"exclude": [
"node_modules",
"dist",
"samples"
],
"compilerOptions": {
"target": "es2015",
"module": "es2015",
"lib": [
"es2017",
"es7",
"es6",
"dom"
],
"moduleResolution": "node",
// "outDir": "out-tsc",
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"emitDeclarationOnly": false,
"experimentalDecorators": true,
"allowJs": true,
"strictNullChecks": false,
"emitDecoratorMetadata": true,
"strictPropertyInitialization": false,
"sourceMap": true,
"strict": false,
"isolatedModules": false,
"skipLibCheck": true,
"noImplicitAny": false,
"removeComments": true,
"resolveJsonModule": true,
"rootDirs": [
"src/",
"tests/src"
],
"typeRoots": [
"node_modules/@types"
]
},
"typedocOptions": {
"entryPoints": [
"src/index.ts"
],
"out": "docs"
}
}