-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathtsconfig.json
45 lines (45 loc) · 1.25 KB
/
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
{
"compilerOptions": {
"module": "commonjs",
"target": "ES5",
"declaration": true,
"moduleResolution": "node",
"alwaysStrict": true,
"sourceMap": true,
"allowSyntheticDefaultImports": true,
"suppressImplicitAnyIndexErrors": true,
"removeComments": false,
"preserveConstEnums": true,
"experimentalDecorators": true,
"noImplicitReturns": true,
"noUnusedLocals": true,
"noUnusedParameters": false,
"noImplicitAny": false,
"noImplicitThis": false,
"resolveJsonModule": true,
"esModuleInterop": true,
"outDir": "build",
"rootDir": "./src",
"emitDecoratorMetadata": true,
"strictNullChecks": true,
"baseUrl": "."
},
"typedocOptions": {
"readme": "./README.md",
"theme": "./script/theme/build",
"highlightTheme": "github-light",
"categorizeByGroup": true,
"hideGenerator": true,
"plugin": [
"typedoc-plugin-nojekyll",
"./script/plugin/build/packages/alias/index.js",
"./script/plugin/build/packages/categories/index.js",
"./script/plugin/build/packages/version/index.js"
],
"out": "docs",
"entryPoints": ["./src"],
"exclude": ["**/*+(index|.spec|.e2e).ts"]
},
"include": ["src/**/*"],
"exclude": ["node_modules", "lib"]
}