forked from midwayjs/midway
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
41 lines (41 loc) · 906 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
{
"extends": "./node_modules/mwts/tsconfig-midway.json",
"compileOnSave": true,
"compilerOptions": {
"moduleResolution": "node",
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"noImplicitThis": false,
"noUnusedLocals": true,
"stripInternal": true,
"noImplicitReturns": false,
"strict": false,
"noEmitOnError": false,
"skipLibCheck": true
},
"exclude": [
"dist",
"node_modules",
"test",
"site"
],
"typedocOptions": {
"name": "Midway v3 Api Reference",
"entryPointStrategy": "packages",
"entryPoints": [
"packages/bootstrap",
"packages/core",
"packages/decorator",
"packages/web-koa"
],
"out": "docs-api",
"exclude": [
"**/dist/**",
"**/build/**",
"**/node_modules/**",
"**/benchmark/**",
"**/*.spec.ts"
],
"excludePrivate": true
}
}