-
Notifications
You must be signed in to change notification settings - Fork 10
/
tsconfig.json
34 lines (34 loc) · 957 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
{
"compilerOptions": {
"composite": true,
"target": "es6",
"declaration": true,
"declarationMap": false,
"module": "commonjs",
"moduleResolution": "node",
"noEmit": true,
"esModuleInterop": true,
"sourceMap": true,
"removeComments": true,
"resolveJsonModule": true,
"strict": true,
"strictBindCallApply": true,
"strictNullChecks": true,
"strictPropertyInitialization": false,
"suppressImplicitAnyIndexErrors": true,
"noImplicitAny": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noFallthroughCasesInSwitch": true,
"noUnusedParameters": false,
"noUnusedLocals": true,
"noEmitOnError": false,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"forceConsistentCasingInFileNames": true,
"pretty": true,
"rootDir": "gen-api"
},
"include": ["**/typings.d.ts", "types/*.d.ts", "**/*.ts"],
"exclude": ["node_modules"]
}