-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathtsconfig.json
More file actions
32 lines (32 loc) · 900 Bytes
/
tsconfig.json
File metadata and controls
32 lines (32 loc) · 900 Bytes
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
{
"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"
}
}