forked from opstrace/opstrace
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtsconfig.json
43 lines (43 loc) · 1.08 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
{
"compilerOptions": {
"strict": true,
"noUnusedLocals": true,
"resolveJsonModule": true,
"outDir": "build",
"target": "ES2020",
"module": "commonjs",
"allowJs": false,
"moduleResolution": "node",
"declaration": true,
"experimentalDecorators": true,
"pretty": true,
"noFallthroughCasesInSwitch": true,
"noImplicitReturns": true,
"forceConsistentCasingInFileNames": true,
"esModuleInterop": true,
// skipLibCheck might be considered unacceptable,
// also see this discussion:
// https://github.com/firebase/firebase-functions/issues/551
"skipLibCheck": true,
"incremental": true,
"downlevelIteration": true,
"declarationMap": true,
"composite": true,
"inlineSourceMap": true,
"types": ["jest", "node"]
},
"exclude": [
"**/node_modules/*",
"**/dist",
"**/build",
"**/test",
"**/spec",
"**/scripts"
],
"references": [
{ "path": "./packages/controller" },
{ "path": "./packages/installer" },
{ "path": "./packages/uninstaller" },
{ "path": "./packages/cli" }
]
}