-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
45 lines (45 loc) · 875 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
{
"compileOnSave": true,
"compilerOptions": {
"forceConsistentCasingInFileNames": true,
"noImplicitReturns": true,
"strict": true,
"noUnusedLocals": true,
"esModuleInterop": true,
"noImplicitAny": true,
"noImplicitThis": true,
"module": "commonjs",
"moduleResolution": "node",
"pretty": true,
"sourceMap": true,
"target": "ES2016",
"baseUrl": "./",
"outDir": "./lib",
"rootDir": "./src",
"typeRoots": [
"node_modules/@types",
]
},
"include": [
"./src/**/*"
],
"exclude": [
"node_modules",
"types"
],
"plugins": [
{
"name": "typescript-tslint-plugin"
}
],
"typedocOptions": {
"inputFiles": [
"./src"
],
"mode": "file",
"out": "docs",
"disableOutputCheck": true,
"excludeExternals": true,
"ignoreCompilerErrors": true
}
}